diff --git a/README.md b/README.md index eceb74f..7540234 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,39 @@ # Name -write-your-name +Ian Ker-Seymer # How many points have you earned? -0/100 +100/100 (Make your own calculation and replace the number 0 with the points you think you've earned.) # How many hours have you spent on this? - -fill-in-your-answer +4 # What is the most difficult part about this week's challenge? - -fill-in-your-answer +Regex # Show and tell ## Link (3 points) -[title-of-the-article](http://link-to-an-interesting-article-about-the-notion-of-quantified-self) +[The Quantified Self: How Data-Obsessed Trackers Push Toward Healthier Lives](http://www.livescience.com/44618-quantified-self-culture.html) ## How do you relate to this article personally? (3 points) -fill-in-your-answer +Although I do not fully relate with the activity of tracking my every move, +I understand the usefulness of doing so. There are countless habits, thoughts, etc. +that lend itself to improvement via the scientific method. For example, I often assess my thought +processes and associated emotions. There is a clear relation between the two. I can +see how useful it might be to track EVERYTHING of that variety as means of self-improvement. + +On the other hand, I wonder if examining oneself under the microscope of data could be +considered obsessive, and possibly be used as means of self-degradation. Sometimes I think +you just have to enjoy life as it comes, and not constantly imagine various trivial ways to +'optimize' yourself. Just be, per se. + +To dust off an old cliche, everything in life is a balance. # API (II) (5 points x 4 + 8 points x 2 = 36 points) @@ -72,54 +81,55 @@ fill-in-your-answer ### 1 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/um6seadqu16995e/Screenshot%202014-09-21%2020.39.00.png?dl=1) ### 2 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/21bacm943968j77/Screenshot%202014-09-21%2021.02.57.png?dl=1) ### 3 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/1xrh3daah5lo4yf/Screenshot%202014-09-21%2021.07.37.png?dl=1) ### 4 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/tyqlrbpyd0cjh9j/Screenshot%202014-09-21%2021.14.35.png?dl=1) ### 5 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/n4tc8v6bxn58v5q/Screenshot%202014-09-21%2021.20.40.png?dl=1) ## Challenges (4 points x 7 + 10 points x 1 = 38 points) ### 1 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/akfcy9zwterjvoy/Screenshot%202014-09-21%2021.34.20.png?dl=1) ### 2 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/yfa8oxj8bt248hv/Screenshot%202014-09-21%2021.38.26.png?dl=1) ### 3 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/clx3nt6otvb0ol0/Screenshot%202014-09-21%2021.51.25.png?dl=1) ### 4 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/vu69o2h6n8f45pn/Screenshot%202014-09-21%2021.51.56.png?dl=1) ### 5 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/ez42a8tme8engy8/Screenshot%202014-09-21%2021.53.47.png?dl=1) ### 6 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/e0p8e7fnp2xwkyd/Screenshot%202014-09-21%2022.47.48.png?dl=1) + ### 7 (4 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/kf9x74fsn790h8v/Screenshot%202014-09-21%2022.48.41.png?dl=1) ### 8 (10 points) -![image](image.png?raw=true) +![image](https://www.dropbox.com/s/fwt2iofqiwbgron/Screenshot%202014-09-21%2023.06.09.png?dl=1) diff --git a/github1.js b/github1.js index e973b82..257f413 100644 --- a/github1.js +++ b/github1.js @@ -1 +1,5 @@ -// TODO: \ No newline at end of file +var rest = require('restler'); + +rest.get('https://api.github.com/repositories').on('complete', function(data) { + console.log(data); +}); diff --git a/github2.js b/github2.js index e973b82..007c234 100644 --- a/github2.js +++ b/github2.js @@ -1 +1,5 @@ -// TODO: \ No newline at end of file +var rest = require('restler'); + +rest.get('https://api.github.com/orgs/csci-4830-002-2014/repos').on('complete', function(data) { + console.log(data); +}); diff --git a/github3.js b/github3.js index e973b82..dc56143 100644 --- a/github3.js +++ b/github3.js @@ -1 +1,5 @@ -// TODO: \ No newline at end of file +var rest = require('restler'); + +rest.get('https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/forks').on('complete', function(data) { + console.log(data); +}); diff --git a/github4.js b/github4.js index e973b82..a7b96eb 100644 --- a/github4.js +++ b/github4.js @@ -1 +1,5 @@ -// TODO: \ No newline at end of file +var rest = require('restler'); + +rest.get('https://api.github.com/repos/csci-4830-002-2014/challenge-week-1/pulls?state=closed').on('complete', function(data) { + console.log(data); +}); diff --git a/github5.js b/github5.js index e973b82..f17bed8 100644 --- a/github5.js +++ b/github5.js @@ -1 +1,5 @@ -// TODO: \ No newline at end of file +var rest = require('restler'); + +rest.get('https://api.github.com/repos/indiesquidge/hackathon-accesslog/stats/contributors').on('complete', function(data) { + console.log(data); +}); diff --git a/github6.js b/github6.js index e973b82..82ed75d 100644 --- a/github6.js +++ b/github6.js @@ -1 +1,9 @@ -// TODO: \ No newline at end of file +var rest = require('restler'); + +rest.post('https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues', { + username: 'ianks', + password: process.env.GITHUB_PW, + data: JSON.stringify({ "title": "Ian KS issue" }) +}).on('complete', function(data, response) { + console.log(response); +}); diff --git a/github7.js b/github7.js index e973b82..f53f12e 100644 --- a/github7.js +++ b/github7.js @@ -1 +1,24 @@ -// TODO: \ No newline at end of file +var GitHubApi = require("github"); +var async = require("async"); + +var github = new GitHubApi({ + version: "3.0.0", +}); + +function getClassEventsForPage(i, callback){ + github.events.getFromOrg({ + org: "CSCI-4830-002-2014", + page: i + }, callback); +}; + +function flatten_fast(input){ + return input.reduce(function(a, b) { + return a.concat(b); + }, []); +} + +async.map([1,2,3,4,5,6,7,8,9,10], getClassEventsForPage, function(err, results){ + flattened = flatten_fast(results); + console.log(JSON.stringify(flattened, undefined, 4)); +}); diff --git a/result1.json b/result1.json index 2f12ae3..aebc773 100644 --- a/result1.json +++ b/result1.json @@ -1 +1,6100 @@ -// Replace this with the data you grabbed from Github (e.g., node github1.js > result1.json) \ No newline at end of file +[ { id: 1, + name: 'grit', + full_name: 'mojombo/grit', + owner: + { login: 'mojombo', + id: 1, + avatar_url: 'https://avatars.githubusercontent.com/u/1?v=2', + gravatar_id: '25c7c18223fb42a4c6ae1c8db6f50f9b', + url: 'https://api.github.com/users/mojombo', + html_url: 'https://github.com/mojombo', + followers_url: 'https://api.github.com/users/mojombo/followers', + following_url: 'https://api.github.com/users/mojombo/following{/other_user}', + gists_url: 'https://api.github.com/users/mojombo/gists{/gist_id}', + starred_url: 'https://api.github.com/users/mojombo/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/mojombo/subscriptions', + organizations_url: 'https://api.github.com/users/mojombo/orgs', + repos_url: 'https://api.github.com/users/mojombo/repos', + events_url: 'https://api.github.com/users/mojombo/events{/privacy}', + received_events_url: 'https://api.github.com/users/mojombo/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/mojombo/grit', + description: '**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.', + fork: false, + url: 'https://api.github.com/repos/mojombo/grit', + forks_url: 'https://api.github.com/repos/mojombo/grit/forks', + keys_url: 'https://api.github.com/repos/mojombo/grit/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/mojombo/grit/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/mojombo/grit/teams', + hooks_url: 'https://api.github.com/repos/mojombo/grit/hooks', + issue_events_url: 'https://api.github.com/repos/mojombo/grit/issues/events{/number}', + events_url: 'https://api.github.com/repos/mojombo/grit/events', + assignees_url: 'https://api.github.com/repos/mojombo/grit/assignees{/user}', + branches_url: 'https://api.github.com/repos/mojombo/grit/branches{/branch}', + tags_url: 'https://api.github.com/repos/mojombo/grit/tags', + blobs_url: 'https://api.github.com/repos/mojombo/grit/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/mojombo/grit/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/mojombo/grit/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/mojombo/grit/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/mojombo/grit/statuses/{sha}', + languages_url: 'https://api.github.com/repos/mojombo/grit/languages', + stargazers_url: 'https://api.github.com/repos/mojombo/grit/stargazers', + contributors_url: 'https://api.github.com/repos/mojombo/grit/contributors', + subscribers_url: 'https://api.github.com/repos/mojombo/grit/subscribers', + subscription_url: 'https://api.github.com/repos/mojombo/grit/subscription', + commits_url: 'https://api.github.com/repos/mojombo/grit/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/mojombo/grit/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/mojombo/grit/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/mojombo/grit/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/mojombo/grit/contents/{+path}', + compare_url: 'https://api.github.com/repos/mojombo/grit/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/mojombo/grit/merges', + archive_url: 'https://api.github.com/repos/mojombo/grit/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/mojombo/grit/downloads', + issues_url: 'https://api.github.com/repos/mojombo/grit/issues{/number}', + pulls_url: 'https://api.github.com/repos/mojombo/grit/pulls{/number}', + milestones_url: 'https://api.github.com/repos/mojombo/grit/milestones{/number}', + notifications_url: 'https://api.github.com/repos/mojombo/grit/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/mojombo/grit/labels{/name}', + releases_url: 'https://api.github.com/repos/mojombo/grit/releases{/id}' }, + { id: 26, + name: 'merb-core', + full_name: 'wycats/merb-core', + owner: + { login: 'wycats', + id: 4, + avatar_url: 'https://avatars.githubusercontent.com/u/4?v=2', + gravatar_id: '428167a3ec72235ba971162924492609', + url: 'https://api.github.com/users/wycats', + html_url: 'https://github.com/wycats', + followers_url: 'https://api.github.com/users/wycats/followers', + following_url: 'https://api.github.com/users/wycats/following{/other_user}', + gists_url: 'https://api.github.com/users/wycats/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wycats/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wycats/subscriptions', + organizations_url: 'https://api.github.com/users/wycats/orgs', + repos_url: 'https://api.github.com/users/wycats/repos', + events_url: 'https://api.github.com/users/wycats/events{/privacy}', + received_events_url: 'https://api.github.com/users/wycats/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wycats/merb-core', + description: 'Merb Core: All you need. None you don\'t.', + fork: false, + url: 'https://api.github.com/repos/wycats/merb-core', + forks_url: 'https://api.github.com/repos/wycats/merb-core/forks', + keys_url: 'https://api.github.com/repos/wycats/merb-core/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wycats/merb-core/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wycats/merb-core/teams', + hooks_url: 'https://api.github.com/repos/wycats/merb-core/hooks', + issue_events_url: 'https://api.github.com/repos/wycats/merb-core/issues/events{/number}', + events_url: 'https://api.github.com/repos/wycats/merb-core/events', + assignees_url: 'https://api.github.com/repos/wycats/merb-core/assignees{/user}', + branches_url: 'https://api.github.com/repos/wycats/merb-core/branches{/branch}', + tags_url: 'https://api.github.com/repos/wycats/merb-core/tags', + blobs_url: 'https://api.github.com/repos/wycats/merb-core/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wycats/merb-core/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wycats/merb-core/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wycats/merb-core/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wycats/merb-core/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wycats/merb-core/languages', + stargazers_url: 'https://api.github.com/repos/wycats/merb-core/stargazers', + contributors_url: 'https://api.github.com/repos/wycats/merb-core/contributors', + subscribers_url: 'https://api.github.com/repos/wycats/merb-core/subscribers', + subscription_url: 'https://api.github.com/repos/wycats/merb-core/subscription', + commits_url: 'https://api.github.com/repos/wycats/merb-core/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wycats/merb-core/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wycats/merb-core/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wycats/merb-core/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wycats/merb-core/contents/{+path}', + compare_url: 'https://api.github.com/repos/wycats/merb-core/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wycats/merb-core/merges', + archive_url: 'https://api.github.com/repos/wycats/merb-core/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wycats/merb-core/downloads', + issues_url: 'https://api.github.com/repos/wycats/merb-core/issues{/number}', + pulls_url: 'https://api.github.com/repos/wycats/merb-core/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wycats/merb-core/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wycats/merb-core/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wycats/merb-core/labels{/name}', + releases_url: 'https://api.github.com/repos/wycats/merb-core/releases{/id}' }, + { id: 27, + name: 'rubinius', + full_name: 'rubinius/rubinius', + owner: + { login: 'rubinius', + id: 317747, + avatar_url: 'https://avatars.githubusercontent.com/u/317747?v=2', + gravatar_id: '8a664b7c5ca834af3e7e49d3a6160082', + url: 'https://api.github.com/users/rubinius', + html_url: 'https://github.com/rubinius', + followers_url: 'https://api.github.com/users/rubinius/followers', + following_url: 'https://api.github.com/users/rubinius/following{/other_user}', + gists_url: 'https://api.github.com/users/rubinius/gists{/gist_id}', + starred_url: 'https://api.github.com/users/rubinius/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/rubinius/subscriptions', + organizations_url: 'https://api.github.com/users/rubinius/orgs', + repos_url: 'https://api.github.com/users/rubinius/repos', + events_url: 'https://api.github.com/users/rubinius/events{/privacy}', + received_events_url: 'https://api.github.com/users/rubinius/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/rubinius/rubinius', + description: 'Rubinius, the Ruby Environment', + fork: false, + url: 'https://api.github.com/repos/rubinius/rubinius', + forks_url: 'https://api.github.com/repos/rubinius/rubinius/forks', + keys_url: 'https://api.github.com/repos/rubinius/rubinius/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/rubinius/rubinius/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/rubinius/rubinius/teams', + hooks_url: 'https://api.github.com/repos/rubinius/rubinius/hooks', + issue_events_url: 'https://api.github.com/repos/rubinius/rubinius/issues/events{/number}', + events_url: 'https://api.github.com/repos/rubinius/rubinius/events', + assignees_url: 'https://api.github.com/repos/rubinius/rubinius/assignees{/user}', + branches_url: 'https://api.github.com/repos/rubinius/rubinius/branches{/branch}', + tags_url: 'https://api.github.com/repos/rubinius/rubinius/tags', + blobs_url: 'https://api.github.com/repos/rubinius/rubinius/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/rubinius/rubinius/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/rubinius/rubinius/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/rubinius/rubinius/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/rubinius/rubinius/statuses/{sha}', + languages_url: 'https://api.github.com/repos/rubinius/rubinius/languages', + stargazers_url: 'https://api.github.com/repos/rubinius/rubinius/stargazers', + contributors_url: 'https://api.github.com/repos/rubinius/rubinius/contributors', + subscribers_url: 'https://api.github.com/repos/rubinius/rubinius/subscribers', + subscription_url: 'https://api.github.com/repos/rubinius/rubinius/subscription', + commits_url: 'https://api.github.com/repos/rubinius/rubinius/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/rubinius/rubinius/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/rubinius/rubinius/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/rubinius/rubinius/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/rubinius/rubinius/contents/{+path}', + compare_url: 'https://api.github.com/repos/rubinius/rubinius/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/rubinius/rubinius/merges', + archive_url: 'https://api.github.com/repos/rubinius/rubinius/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/rubinius/rubinius/downloads', + issues_url: 'https://api.github.com/repos/rubinius/rubinius/issues{/number}', + pulls_url: 'https://api.github.com/repos/rubinius/rubinius/pulls{/number}', + milestones_url: 'https://api.github.com/repos/rubinius/rubinius/milestones{/number}', + notifications_url: 'https://api.github.com/repos/rubinius/rubinius/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/rubinius/rubinius/labels{/name}', + releases_url: 'https://api.github.com/repos/rubinius/rubinius/releases{/id}' }, + { id: 28, + name: 'god', + full_name: 'mojombo/god', + owner: + { login: 'mojombo', + id: 1, + avatar_url: 'https://avatars.githubusercontent.com/u/1?v=2', + gravatar_id: '25c7c18223fb42a4c6ae1c8db6f50f9b', + url: 'https://api.github.com/users/mojombo', + html_url: 'https://github.com/mojombo', + followers_url: 'https://api.github.com/users/mojombo/followers', + following_url: 'https://api.github.com/users/mojombo/following{/other_user}', + gists_url: 'https://api.github.com/users/mojombo/gists{/gist_id}', + starred_url: 'https://api.github.com/users/mojombo/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/mojombo/subscriptions', + organizations_url: 'https://api.github.com/users/mojombo/orgs', + repos_url: 'https://api.github.com/users/mojombo/repos', + events_url: 'https://api.github.com/users/mojombo/events{/privacy}', + received_events_url: 'https://api.github.com/users/mojombo/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/mojombo/god', + description: 'Ruby process monitor', + fork: false, + url: 'https://api.github.com/repos/mojombo/god', + forks_url: 'https://api.github.com/repos/mojombo/god/forks', + keys_url: 'https://api.github.com/repos/mojombo/god/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/mojombo/god/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/mojombo/god/teams', + hooks_url: 'https://api.github.com/repos/mojombo/god/hooks', + issue_events_url: 'https://api.github.com/repos/mojombo/god/issues/events{/number}', + events_url: 'https://api.github.com/repos/mojombo/god/events', + assignees_url: 'https://api.github.com/repos/mojombo/god/assignees{/user}', + branches_url: 'https://api.github.com/repos/mojombo/god/branches{/branch}', + tags_url: 'https://api.github.com/repos/mojombo/god/tags', + blobs_url: 'https://api.github.com/repos/mojombo/god/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/mojombo/god/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/mojombo/god/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/mojombo/god/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/mojombo/god/statuses/{sha}', + languages_url: 'https://api.github.com/repos/mojombo/god/languages', + stargazers_url: 'https://api.github.com/repos/mojombo/god/stargazers', + contributors_url: 'https://api.github.com/repos/mojombo/god/contributors', + subscribers_url: 'https://api.github.com/repos/mojombo/god/subscribers', + subscription_url: 'https://api.github.com/repos/mojombo/god/subscription', + commits_url: 'https://api.github.com/repos/mojombo/god/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/mojombo/god/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/mojombo/god/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/mojombo/god/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/mojombo/god/contents/{+path}', + compare_url: 'https://api.github.com/repos/mojombo/god/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/mojombo/god/merges', + archive_url: 'https://api.github.com/repos/mojombo/god/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/mojombo/god/downloads', + issues_url: 'https://api.github.com/repos/mojombo/god/issues{/number}', + pulls_url: 'https://api.github.com/repos/mojombo/god/pulls{/number}', + milestones_url: 'https://api.github.com/repos/mojombo/god/milestones{/number}', + notifications_url: 'https://api.github.com/repos/mojombo/god/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/mojombo/god/labels{/name}', + releases_url: 'https://api.github.com/repos/mojombo/god/releases{/id}' }, + { id: 29, + name: 'jsawesome', + full_name: 'vanpelt/jsawesome', + owner: + { login: 'vanpelt', + id: 17, + avatar_url: 'https://avatars.githubusercontent.com/u/17?v=2', + gravatar_id: '1da36d4c1f34454de6c07855098675f6', + url: 'https://api.github.com/users/vanpelt', + html_url: 'https://github.com/vanpelt', + followers_url: 'https://api.github.com/users/vanpelt/followers', + following_url: 'https://api.github.com/users/vanpelt/following{/other_user}', + gists_url: 'https://api.github.com/users/vanpelt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/vanpelt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/vanpelt/subscriptions', + organizations_url: 'https://api.github.com/users/vanpelt/orgs', + repos_url: 'https://api.github.com/users/vanpelt/repos', + events_url: 'https://api.github.com/users/vanpelt/events{/privacy}', + received_events_url: 'https://api.github.com/users/vanpelt/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/vanpelt/jsawesome', + description: 'Awesome JSON', + fork: false, + url: 'https://api.github.com/repos/vanpelt/jsawesome', + forks_url: 'https://api.github.com/repos/vanpelt/jsawesome/forks', + keys_url: 'https://api.github.com/repos/vanpelt/jsawesome/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/vanpelt/jsawesome/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/vanpelt/jsawesome/teams', + hooks_url: 'https://api.github.com/repos/vanpelt/jsawesome/hooks', + issue_events_url: 'https://api.github.com/repos/vanpelt/jsawesome/issues/events{/number}', + events_url: 'https://api.github.com/repos/vanpelt/jsawesome/events', + assignees_url: 'https://api.github.com/repos/vanpelt/jsawesome/assignees{/user}', + branches_url: 'https://api.github.com/repos/vanpelt/jsawesome/branches{/branch}', + tags_url: 'https://api.github.com/repos/vanpelt/jsawesome/tags', + blobs_url: 'https://api.github.com/repos/vanpelt/jsawesome/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/vanpelt/jsawesome/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/vanpelt/jsawesome/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/vanpelt/jsawesome/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/vanpelt/jsawesome/statuses/{sha}', + languages_url: 'https://api.github.com/repos/vanpelt/jsawesome/languages', + stargazers_url: 'https://api.github.com/repos/vanpelt/jsawesome/stargazers', + contributors_url: 'https://api.github.com/repos/vanpelt/jsawesome/contributors', + subscribers_url: 'https://api.github.com/repos/vanpelt/jsawesome/subscribers', + subscription_url: 'https://api.github.com/repos/vanpelt/jsawesome/subscription', + commits_url: 'https://api.github.com/repos/vanpelt/jsawesome/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/vanpelt/jsawesome/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/vanpelt/jsawesome/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/vanpelt/jsawesome/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/vanpelt/jsawesome/contents/{+path}', + compare_url: 'https://api.github.com/repos/vanpelt/jsawesome/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/vanpelt/jsawesome/merges', + archive_url: 'https://api.github.com/repos/vanpelt/jsawesome/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/vanpelt/jsawesome/downloads', + issues_url: 'https://api.github.com/repos/vanpelt/jsawesome/issues{/number}', + pulls_url: 'https://api.github.com/repos/vanpelt/jsawesome/pulls{/number}', + milestones_url: 'https://api.github.com/repos/vanpelt/jsawesome/milestones{/number}', + notifications_url: 'https://api.github.com/repos/vanpelt/jsawesome/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/vanpelt/jsawesome/labels{/name}', + releases_url: 'https://api.github.com/repos/vanpelt/jsawesome/releases{/id}' }, + { id: 31, + name: 'jspec', + full_name: 'wycats/jspec', + owner: + { login: 'wycats', + id: 4, + avatar_url: 'https://avatars.githubusercontent.com/u/4?v=2', + gravatar_id: '428167a3ec72235ba971162924492609', + url: 'https://api.github.com/users/wycats', + html_url: 'https://github.com/wycats', + followers_url: 'https://api.github.com/users/wycats/followers', + following_url: 'https://api.github.com/users/wycats/following{/other_user}', + gists_url: 'https://api.github.com/users/wycats/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wycats/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wycats/subscriptions', + organizations_url: 'https://api.github.com/users/wycats/orgs', + repos_url: 'https://api.github.com/users/wycats/repos', + events_url: 'https://api.github.com/users/wycats/events{/privacy}', + received_events_url: 'https://api.github.com/users/wycats/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wycats/jspec', + description: 'A JavaScript BDD Testing Library', + fork: false, + url: 'https://api.github.com/repos/wycats/jspec', + forks_url: 'https://api.github.com/repos/wycats/jspec/forks', + keys_url: 'https://api.github.com/repos/wycats/jspec/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wycats/jspec/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wycats/jspec/teams', + hooks_url: 'https://api.github.com/repos/wycats/jspec/hooks', + issue_events_url: 'https://api.github.com/repos/wycats/jspec/issues/events{/number}', + events_url: 'https://api.github.com/repos/wycats/jspec/events', + assignees_url: 'https://api.github.com/repos/wycats/jspec/assignees{/user}', + branches_url: 'https://api.github.com/repos/wycats/jspec/branches{/branch}', + tags_url: 'https://api.github.com/repos/wycats/jspec/tags', + blobs_url: 'https://api.github.com/repos/wycats/jspec/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wycats/jspec/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wycats/jspec/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wycats/jspec/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wycats/jspec/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wycats/jspec/languages', + stargazers_url: 'https://api.github.com/repos/wycats/jspec/stargazers', + contributors_url: 'https://api.github.com/repos/wycats/jspec/contributors', + subscribers_url: 'https://api.github.com/repos/wycats/jspec/subscribers', + subscription_url: 'https://api.github.com/repos/wycats/jspec/subscription', + commits_url: 'https://api.github.com/repos/wycats/jspec/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wycats/jspec/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wycats/jspec/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wycats/jspec/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wycats/jspec/contents/{+path}', + compare_url: 'https://api.github.com/repos/wycats/jspec/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wycats/jspec/merges', + archive_url: 'https://api.github.com/repos/wycats/jspec/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wycats/jspec/downloads', + issues_url: 'https://api.github.com/repos/wycats/jspec/issues{/number}', + pulls_url: 'https://api.github.com/repos/wycats/jspec/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wycats/jspec/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wycats/jspec/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wycats/jspec/labels{/name}', + releases_url: 'https://api.github.com/repos/wycats/jspec/releases{/id}' }, + { id: 35, + name: 'exception_logger', + full_name: 'defunkt/exception_logger', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/exception_logger', + description: 'Unmaintained. Sorry.', + fork: false, + url: 'https://api.github.com/repos/defunkt/exception_logger', + forks_url: 'https://api.github.com/repos/defunkt/exception_logger/forks', + keys_url: 'https://api.github.com/repos/defunkt/exception_logger/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/exception_logger/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/exception_logger/teams', + hooks_url: 'https://api.github.com/repos/defunkt/exception_logger/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/exception_logger/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/exception_logger/events', + assignees_url: 'https://api.github.com/repos/defunkt/exception_logger/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/exception_logger/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/exception_logger/tags', + blobs_url: 'https://api.github.com/repos/defunkt/exception_logger/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/exception_logger/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/exception_logger/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/exception_logger/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/exception_logger/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/exception_logger/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/exception_logger/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/exception_logger/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/exception_logger/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/exception_logger/subscription', + commits_url: 'https://api.github.com/repos/defunkt/exception_logger/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/exception_logger/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/exception_logger/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/exception_logger/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/exception_logger/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/exception_logger/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/exception_logger/merges', + archive_url: 'https://api.github.com/repos/defunkt/exception_logger/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/exception_logger/downloads', + issues_url: 'https://api.github.com/repos/defunkt/exception_logger/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/exception_logger/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/exception_logger/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/exception_logger/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/exception_logger/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/exception_logger/releases{/id}' }, + { id: 36, + name: 'ambition', + full_name: 'defunkt/ambition', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/ambition', + description: 'include Enumerable — Unmaintained', + fork: false, + url: 'https://api.github.com/repos/defunkt/ambition', + forks_url: 'https://api.github.com/repos/defunkt/ambition/forks', + keys_url: 'https://api.github.com/repos/defunkt/ambition/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/ambition/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/ambition/teams', + hooks_url: 'https://api.github.com/repos/defunkt/ambition/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/ambition/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/ambition/events', + assignees_url: 'https://api.github.com/repos/defunkt/ambition/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/ambition/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/ambition/tags', + blobs_url: 'https://api.github.com/repos/defunkt/ambition/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/ambition/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/ambition/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/ambition/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/ambition/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/ambition/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/ambition/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/ambition/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/ambition/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/ambition/subscription', + commits_url: 'https://api.github.com/repos/defunkt/ambition/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/ambition/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/ambition/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/ambition/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/ambition/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/ambition/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/ambition/merges', + archive_url: 'https://api.github.com/repos/defunkt/ambition/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/ambition/downloads', + issues_url: 'https://api.github.com/repos/defunkt/ambition/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/ambition/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/ambition/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/ambition/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/ambition/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/ambition/releases{/id}' }, + { id: 42, + name: 'restful-authentication', + full_name: 'technoweenie/restful-authentication', + owner: + { login: 'technoweenie', + id: 21, + avatar_url: 'https://avatars.githubusercontent.com/u/21?v=2', + gravatar_id: '821395fe70906c8290df7f18ac4ac6cf', + url: 'https://api.github.com/users/technoweenie', + html_url: 'https://github.com/technoweenie', + followers_url: 'https://api.github.com/users/technoweenie/followers', + following_url: 'https://api.github.com/users/technoweenie/following{/other_user}', + gists_url: 'https://api.github.com/users/technoweenie/gists{/gist_id}', + starred_url: 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/technoweenie/subscriptions', + organizations_url: 'https://api.github.com/users/technoweenie/orgs', + repos_url: 'https://api.github.com/users/technoweenie/repos', + events_url: 'https://api.github.com/users/technoweenie/events{/privacy}', + received_events_url: 'https://api.github.com/users/technoweenie/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/technoweenie/restful-authentication', + description: 'Generates common user authentication code for Rails/Merb, with a full test/unit and rspec suite and optional Acts as State Machine support built-in.', + fork: false, + url: 'https://api.github.com/repos/technoweenie/restful-authentication', + forks_url: 'https://api.github.com/repos/technoweenie/restful-authentication/forks', + keys_url: 'https://api.github.com/repos/technoweenie/restful-authentication/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/technoweenie/restful-authentication/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/technoweenie/restful-authentication/teams', + hooks_url: 'https://api.github.com/repos/technoweenie/restful-authentication/hooks', + issue_events_url: 'https://api.github.com/repos/technoweenie/restful-authentication/issues/events{/number}', + events_url: 'https://api.github.com/repos/technoweenie/restful-authentication/events', + assignees_url: 'https://api.github.com/repos/technoweenie/restful-authentication/assignees{/user}', + branches_url: 'https://api.github.com/repos/technoweenie/restful-authentication/branches{/branch}', + tags_url: 'https://api.github.com/repos/technoweenie/restful-authentication/tags', + blobs_url: 'https://api.github.com/repos/technoweenie/restful-authentication/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/technoweenie/restful-authentication/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/technoweenie/restful-authentication/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/technoweenie/restful-authentication/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/technoweenie/restful-authentication/statuses/{sha}', + languages_url: 'https://api.github.com/repos/technoweenie/restful-authentication/languages', + stargazers_url: 'https://api.github.com/repos/technoweenie/restful-authentication/stargazers', + contributors_url: 'https://api.github.com/repos/technoweenie/restful-authentication/contributors', + subscribers_url: 'https://api.github.com/repos/technoweenie/restful-authentication/subscribers', + subscription_url: 'https://api.github.com/repos/technoweenie/restful-authentication/subscription', + commits_url: 'https://api.github.com/repos/technoweenie/restful-authentication/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/technoweenie/restful-authentication/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/technoweenie/restful-authentication/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/technoweenie/restful-authentication/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/technoweenie/restful-authentication/contents/{+path}', + compare_url: 'https://api.github.com/repos/technoweenie/restful-authentication/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/technoweenie/restful-authentication/merges', + archive_url: 'https://api.github.com/repos/technoweenie/restful-authentication/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/technoweenie/restful-authentication/downloads', + issues_url: 'https://api.github.com/repos/technoweenie/restful-authentication/issues{/number}', + pulls_url: 'https://api.github.com/repos/technoweenie/restful-authentication/pulls{/number}', + milestones_url: 'https://api.github.com/repos/technoweenie/restful-authentication/milestones{/number}', + notifications_url: 'https://api.github.com/repos/technoweenie/restful-authentication/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/technoweenie/restful-authentication/labels{/name}', + releases_url: 'https://api.github.com/repos/technoweenie/restful-authentication/releases{/id}' }, + { id: 43, + name: 'attachment_fu', + full_name: 'technoweenie/attachment_fu', + owner: + { login: 'technoweenie', + id: 21, + avatar_url: 'https://avatars.githubusercontent.com/u/21?v=2', + gravatar_id: '821395fe70906c8290df7f18ac4ac6cf', + url: 'https://api.github.com/users/technoweenie', + html_url: 'https://github.com/technoweenie', + followers_url: 'https://api.github.com/users/technoweenie/followers', + following_url: 'https://api.github.com/users/technoweenie/following{/other_user}', + gists_url: 'https://api.github.com/users/technoweenie/gists{/gist_id}', + starred_url: 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/technoweenie/subscriptions', + organizations_url: 'https://api.github.com/users/technoweenie/orgs', + repos_url: 'https://api.github.com/users/technoweenie/repos', + events_url: 'https://api.github.com/users/technoweenie/events{/privacy}', + received_events_url: 'https://api.github.com/users/technoweenie/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/technoweenie/attachment_fu', + description: 'Treat an ActiveRecord model as a file attachment, storing its patch, size, content type, etc.', + fork: false, + url: 'https://api.github.com/repos/technoweenie/attachment_fu', + forks_url: 'https://api.github.com/repos/technoweenie/attachment_fu/forks', + keys_url: 'https://api.github.com/repos/technoweenie/attachment_fu/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/technoweenie/attachment_fu/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/technoweenie/attachment_fu/teams', + hooks_url: 'https://api.github.com/repos/technoweenie/attachment_fu/hooks', + issue_events_url: 'https://api.github.com/repos/technoweenie/attachment_fu/issues/events{/number}', + events_url: 'https://api.github.com/repos/technoweenie/attachment_fu/events', + assignees_url: 'https://api.github.com/repos/technoweenie/attachment_fu/assignees{/user}', + branches_url: 'https://api.github.com/repos/technoweenie/attachment_fu/branches{/branch}', + tags_url: 'https://api.github.com/repos/technoweenie/attachment_fu/tags', + blobs_url: 'https://api.github.com/repos/technoweenie/attachment_fu/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/technoweenie/attachment_fu/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/technoweenie/attachment_fu/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/technoweenie/attachment_fu/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/technoweenie/attachment_fu/statuses/{sha}', + languages_url: 'https://api.github.com/repos/technoweenie/attachment_fu/languages', + stargazers_url: 'https://api.github.com/repos/technoweenie/attachment_fu/stargazers', + contributors_url: 'https://api.github.com/repos/technoweenie/attachment_fu/contributors', + subscribers_url: 'https://api.github.com/repos/technoweenie/attachment_fu/subscribers', + subscription_url: 'https://api.github.com/repos/technoweenie/attachment_fu/subscription', + commits_url: 'https://api.github.com/repos/technoweenie/attachment_fu/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/technoweenie/attachment_fu/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/technoweenie/attachment_fu/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/technoweenie/attachment_fu/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/technoweenie/attachment_fu/contents/{+path}', + compare_url: 'https://api.github.com/repos/technoweenie/attachment_fu/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/technoweenie/attachment_fu/merges', + archive_url: 'https://api.github.com/repos/technoweenie/attachment_fu/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/technoweenie/attachment_fu/downloads', + issues_url: 'https://api.github.com/repos/technoweenie/attachment_fu/issues{/number}', + pulls_url: 'https://api.github.com/repos/technoweenie/attachment_fu/pulls{/number}', + milestones_url: 'https://api.github.com/repos/technoweenie/attachment_fu/milestones{/number}', + notifications_url: 'https://api.github.com/repos/technoweenie/attachment_fu/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/technoweenie/attachment_fu/labels{/name}', + releases_url: 'https://api.github.com/repos/technoweenie/attachment_fu/releases{/id}' }, + { id: 47, + name: 'bong', + full_name: 'topfunky/bong', + owner: + { login: 'topfunky', + id: 26, + avatar_url: 'https://avatars.githubusercontent.com/u/26?v=2', + gravatar_id: 'a9d024f5032b8de04d7c74528beb77ab', + url: 'https://api.github.com/users/topfunky', + html_url: 'https://github.com/topfunky', + followers_url: 'https://api.github.com/users/topfunky/followers', + following_url: 'https://api.github.com/users/topfunky/following{/other_user}', + gists_url: 'https://api.github.com/users/topfunky/gists{/gist_id}', + starred_url: 'https://api.github.com/users/topfunky/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/topfunky/subscriptions', + organizations_url: 'https://api.github.com/users/topfunky/orgs', + repos_url: 'https://api.github.com/users/topfunky/repos', + events_url: 'https://api.github.com/users/topfunky/events{/privacy}', + received_events_url: 'https://api.github.com/users/topfunky/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/topfunky/bong', + description: 'A benchmarking helper for httperf.', + fork: false, + url: 'https://api.github.com/repos/topfunky/bong', + forks_url: 'https://api.github.com/repos/topfunky/bong/forks', + keys_url: 'https://api.github.com/repos/topfunky/bong/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/topfunky/bong/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/topfunky/bong/teams', + hooks_url: 'https://api.github.com/repos/topfunky/bong/hooks', + issue_events_url: 'https://api.github.com/repos/topfunky/bong/issues/events{/number}', + events_url: 'https://api.github.com/repos/topfunky/bong/events', + assignees_url: 'https://api.github.com/repos/topfunky/bong/assignees{/user}', + branches_url: 'https://api.github.com/repos/topfunky/bong/branches{/branch}', + tags_url: 'https://api.github.com/repos/topfunky/bong/tags', + blobs_url: 'https://api.github.com/repos/topfunky/bong/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/topfunky/bong/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/topfunky/bong/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/topfunky/bong/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/topfunky/bong/statuses/{sha}', + languages_url: 'https://api.github.com/repos/topfunky/bong/languages', + stargazers_url: 'https://api.github.com/repos/topfunky/bong/stargazers', + contributors_url: 'https://api.github.com/repos/topfunky/bong/contributors', + subscribers_url: 'https://api.github.com/repos/topfunky/bong/subscribers', + subscription_url: 'https://api.github.com/repos/topfunky/bong/subscription', + commits_url: 'https://api.github.com/repos/topfunky/bong/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/topfunky/bong/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/topfunky/bong/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/topfunky/bong/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/topfunky/bong/contents/{+path}', + compare_url: 'https://api.github.com/repos/topfunky/bong/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/topfunky/bong/merges', + archive_url: 'https://api.github.com/repos/topfunky/bong/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/topfunky/bong/downloads', + issues_url: 'https://api.github.com/repos/topfunky/bong/issues{/number}', + pulls_url: 'https://api.github.com/repos/topfunky/bong/pulls{/number}', + milestones_url: 'https://api.github.com/repos/topfunky/bong/milestones{/number}', + notifications_url: 'https://api.github.com/repos/topfunky/bong/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/topfunky/bong/labels{/name}', + releases_url: 'https://api.github.com/repos/topfunky/bong/releases{/id}' }, + { id: 48, + name: 'microsis', + full_name: 'Caged/microsis', + owner: + { login: 'Caged', + id: 25, + avatar_url: 'https://avatars.githubusercontent.com/u/25?v=2', + gravatar_id: '97c3a8eea9b7eaa9e1e93ea3cd47399f', + url: 'https://api.github.com/users/Caged', + html_url: 'https://github.com/Caged', + followers_url: 'https://api.github.com/users/Caged/followers', + following_url: 'https://api.github.com/users/Caged/following{/other_user}', + gists_url: 'https://api.github.com/users/Caged/gists{/gist_id}', + starred_url: 'https://api.github.com/users/Caged/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/Caged/subscriptions', + organizations_url: 'https://api.github.com/users/Caged/orgs', + repos_url: 'https://api.github.com/users/Caged/repos', + events_url: 'https://api.github.com/users/Caged/events{/privacy}', + received_events_url: 'https://api.github.com/users/Caged/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/Caged/microsis', + description: 'SUPER OLD STUFF', + fork: false, + url: 'https://api.github.com/repos/Caged/microsis', + forks_url: 'https://api.github.com/repos/Caged/microsis/forks', + keys_url: 'https://api.github.com/repos/Caged/microsis/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/Caged/microsis/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/Caged/microsis/teams', + hooks_url: 'https://api.github.com/repos/Caged/microsis/hooks', + issue_events_url: 'https://api.github.com/repos/Caged/microsis/issues/events{/number}', + events_url: 'https://api.github.com/repos/Caged/microsis/events', + assignees_url: 'https://api.github.com/repos/Caged/microsis/assignees{/user}', + branches_url: 'https://api.github.com/repos/Caged/microsis/branches{/branch}', + tags_url: 'https://api.github.com/repos/Caged/microsis/tags', + blobs_url: 'https://api.github.com/repos/Caged/microsis/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/Caged/microsis/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/Caged/microsis/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/Caged/microsis/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/Caged/microsis/statuses/{sha}', + languages_url: 'https://api.github.com/repos/Caged/microsis/languages', + stargazers_url: 'https://api.github.com/repos/Caged/microsis/stargazers', + contributors_url: 'https://api.github.com/repos/Caged/microsis/contributors', + subscribers_url: 'https://api.github.com/repos/Caged/microsis/subscribers', + subscription_url: 'https://api.github.com/repos/Caged/microsis/subscription', + commits_url: 'https://api.github.com/repos/Caged/microsis/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/Caged/microsis/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/Caged/microsis/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/Caged/microsis/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/Caged/microsis/contents/{+path}', + compare_url: 'https://api.github.com/repos/Caged/microsis/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/Caged/microsis/merges', + archive_url: 'https://api.github.com/repos/Caged/microsis/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/Caged/microsis/downloads', + issues_url: 'https://api.github.com/repos/Caged/microsis/issues{/number}', + pulls_url: 'https://api.github.com/repos/Caged/microsis/pulls{/number}', + milestones_url: 'https://api.github.com/repos/Caged/microsis/milestones{/number}', + notifications_url: 'https://api.github.com/repos/Caged/microsis/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/Caged/microsis/labels{/name}', + releases_url: 'https://api.github.com/repos/Caged/microsis/releases{/id}' }, + { id: 52, + name: 's3', + full_name: 'anotherjesse/s3', + owner: + { login: 'anotherjesse', + id: 27, + avatar_url: 'https://avatars.githubusercontent.com/u/27?v=2', + gravatar_id: '50d10a8864accf0b2522c326381a4702', + url: 'https://api.github.com/users/anotherjesse', + html_url: 'https://github.com/anotherjesse', + followers_url: 'https://api.github.com/users/anotherjesse/followers', + following_url: 'https://api.github.com/users/anotherjesse/following{/other_user}', + gists_url: 'https://api.github.com/users/anotherjesse/gists{/gist_id}', + starred_url: 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/anotherjesse/subscriptions', + organizations_url: 'https://api.github.com/users/anotherjesse/orgs', + repos_url: 'https://api.github.com/users/anotherjesse/repos', + events_url: 'https://api.github.com/users/anotherjesse/events{/privacy}', + received_events_url: 'https://api.github.com/users/anotherjesse/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/anotherjesse/s3', + description: 'psuedo s3 protocol for mozilla browsers', + fork: false, + url: 'https://api.github.com/repos/anotherjesse/s3', + forks_url: 'https://api.github.com/repos/anotherjesse/s3/forks', + keys_url: 'https://api.github.com/repos/anotherjesse/s3/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/anotherjesse/s3/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/anotherjesse/s3/teams', + hooks_url: 'https://api.github.com/repos/anotherjesse/s3/hooks', + issue_events_url: 'https://api.github.com/repos/anotherjesse/s3/issues/events{/number}', + events_url: 'https://api.github.com/repos/anotherjesse/s3/events', + assignees_url: 'https://api.github.com/repos/anotherjesse/s3/assignees{/user}', + branches_url: 'https://api.github.com/repos/anotherjesse/s3/branches{/branch}', + tags_url: 'https://api.github.com/repos/anotherjesse/s3/tags', + blobs_url: 'https://api.github.com/repos/anotherjesse/s3/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/anotherjesse/s3/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/anotherjesse/s3/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/anotherjesse/s3/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/anotherjesse/s3/statuses/{sha}', + languages_url: 'https://api.github.com/repos/anotherjesse/s3/languages', + stargazers_url: 'https://api.github.com/repos/anotherjesse/s3/stargazers', + contributors_url: 'https://api.github.com/repos/anotherjesse/s3/contributors', + subscribers_url: 'https://api.github.com/repos/anotherjesse/s3/subscribers', + subscription_url: 'https://api.github.com/repos/anotherjesse/s3/subscription', + commits_url: 'https://api.github.com/repos/anotherjesse/s3/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/anotherjesse/s3/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/anotherjesse/s3/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/anotherjesse/s3/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/anotherjesse/s3/contents/{+path}', + compare_url: 'https://api.github.com/repos/anotherjesse/s3/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/anotherjesse/s3/merges', + archive_url: 'https://api.github.com/repos/anotherjesse/s3/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/anotherjesse/s3/downloads', + issues_url: 'https://api.github.com/repos/anotherjesse/s3/issues{/number}', + pulls_url: 'https://api.github.com/repos/anotherjesse/s3/pulls{/number}', + milestones_url: 'https://api.github.com/repos/anotherjesse/s3/milestones{/number}', + notifications_url: 'https://api.github.com/repos/anotherjesse/s3/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/anotherjesse/s3/labels{/name}', + releases_url: 'https://api.github.com/repos/anotherjesse/s3/releases{/id}' }, + { id: 53, + name: 'taboo', + full_name: 'anotherjesse/taboo', + owner: + { login: 'anotherjesse', + id: 27, + avatar_url: 'https://avatars.githubusercontent.com/u/27?v=2', + gravatar_id: '50d10a8864accf0b2522c326381a4702', + url: 'https://api.github.com/users/anotherjesse', + html_url: 'https://github.com/anotherjesse', + followers_url: 'https://api.github.com/users/anotherjesse/followers', + following_url: 'https://api.github.com/users/anotherjesse/following{/other_user}', + gists_url: 'https://api.github.com/users/anotherjesse/gists{/gist_id}', + starred_url: 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/anotherjesse/subscriptions', + organizations_url: 'https://api.github.com/users/anotherjesse/orgs', + repos_url: 'https://api.github.com/users/anotherjesse/repos', + events_url: 'https://api.github.com/users/anotherjesse/events{/privacy}', + received_events_url: 'https://api.github.com/users/anotherjesse/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/anotherjesse/taboo', + description: 'The solution for tabitus of the browser ', + fork: false, + url: 'https://api.github.com/repos/anotherjesse/taboo', + forks_url: 'https://api.github.com/repos/anotherjesse/taboo/forks', + keys_url: 'https://api.github.com/repos/anotherjesse/taboo/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/anotherjesse/taboo/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/anotherjesse/taboo/teams', + hooks_url: 'https://api.github.com/repos/anotherjesse/taboo/hooks', + issue_events_url: 'https://api.github.com/repos/anotherjesse/taboo/issues/events{/number}', + events_url: 'https://api.github.com/repos/anotherjesse/taboo/events', + assignees_url: 'https://api.github.com/repos/anotherjesse/taboo/assignees{/user}', + branches_url: 'https://api.github.com/repos/anotherjesse/taboo/branches{/branch}', + tags_url: 'https://api.github.com/repos/anotherjesse/taboo/tags', + blobs_url: 'https://api.github.com/repos/anotherjesse/taboo/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/anotherjesse/taboo/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/anotherjesse/taboo/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/anotherjesse/taboo/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/anotherjesse/taboo/statuses/{sha}', + languages_url: 'https://api.github.com/repos/anotherjesse/taboo/languages', + stargazers_url: 'https://api.github.com/repos/anotherjesse/taboo/stargazers', + contributors_url: 'https://api.github.com/repos/anotherjesse/taboo/contributors', + subscribers_url: 'https://api.github.com/repos/anotherjesse/taboo/subscribers', + subscription_url: 'https://api.github.com/repos/anotherjesse/taboo/subscription', + commits_url: 'https://api.github.com/repos/anotherjesse/taboo/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/anotherjesse/taboo/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/anotherjesse/taboo/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/anotherjesse/taboo/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/anotherjesse/taboo/contents/{+path}', + compare_url: 'https://api.github.com/repos/anotherjesse/taboo/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/anotherjesse/taboo/merges', + archive_url: 'https://api.github.com/repos/anotherjesse/taboo/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/anotherjesse/taboo/downloads', + issues_url: 'https://api.github.com/repos/anotherjesse/taboo/issues{/number}', + pulls_url: 'https://api.github.com/repos/anotherjesse/taboo/pulls{/number}', + milestones_url: 'https://api.github.com/repos/anotherjesse/taboo/milestones{/number}', + notifications_url: 'https://api.github.com/repos/anotherjesse/taboo/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/anotherjesse/taboo/labels{/name}', + releases_url: 'https://api.github.com/repos/anotherjesse/taboo/releases{/id}' }, + { id: 54, + name: 'foxtracs', + full_name: 'anotherjesse/foxtracs', + owner: + { login: 'anotherjesse', + id: 27, + avatar_url: 'https://avatars.githubusercontent.com/u/27?v=2', + gravatar_id: '50d10a8864accf0b2522c326381a4702', + url: 'https://api.github.com/users/anotherjesse', + html_url: 'https://github.com/anotherjesse', + followers_url: 'https://api.github.com/users/anotherjesse/followers', + following_url: 'https://api.github.com/users/anotherjesse/following{/other_user}', + gists_url: 'https://api.github.com/users/anotherjesse/gists{/gist_id}', + starred_url: 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/anotherjesse/subscriptions', + organizations_url: 'https://api.github.com/users/anotherjesse/orgs', + repos_url: 'https://api.github.com/users/anotherjesse/repos', + events_url: 'https://api.github.com/users/anotherjesse/events{/privacy}', + received_events_url: 'https://api.github.com/users/anotherjesse/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/anotherjesse/foxtracs', + description: 'firefox trac integration', + fork: false, + url: 'https://api.github.com/repos/anotherjesse/foxtracs', + forks_url: 'https://api.github.com/repos/anotherjesse/foxtracs/forks', + keys_url: 'https://api.github.com/repos/anotherjesse/foxtracs/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/anotherjesse/foxtracs/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/anotherjesse/foxtracs/teams', + hooks_url: 'https://api.github.com/repos/anotherjesse/foxtracs/hooks', + issue_events_url: 'https://api.github.com/repos/anotherjesse/foxtracs/issues/events{/number}', + events_url: 'https://api.github.com/repos/anotherjesse/foxtracs/events', + assignees_url: 'https://api.github.com/repos/anotherjesse/foxtracs/assignees{/user}', + branches_url: 'https://api.github.com/repos/anotherjesse/foxtracs/branches{/branch}', + tags_url: 'https://api.github.com/repos/anotherjesse/foxtracs/tags', + blobs_url: 'https://api.github.com/repos/anotherjesse/foxtracs/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/anotherjesse/foxtracs/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/anotherjesse/foxtracs/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/anotherjesse/foxtracs/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/anotherjesse/foxtracs/statuses/{sha}', + languages_url: 'https://api.github.com/repos/anotherjesse/foxtracs/languages', + stargazers_url: 'https://api.github.com/repos/anotherjesse/foxtracs/stargazers', + contributors_url: 'https://api.github.com/repos/anotherjesse/foxtracs/contributors', + subscribers_url: 'https://api.github.com/repos/anotherjesse/foxtracs/subscribers', + subscription_url: 'https://api.github.com/repos/anotherjesse/foxtracs/subscription', + commits_url: 'https://api.github.com/repos/anotherjesse/foxtracs/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/anotherjesse/foxtracs/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/anotherjesse/foxtracs/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/anotherjesse/foxtracs/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/anotherjesse/foxtracs/contents/{+path}', + compare_url: 'https://api.github.com/repos/anotherjesse/foxtracs/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/anotherjesse/foxtracs/merges', + archive_url: 'https://api.github.com/repos/anotherjesse/foxtracs/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/anotherjesse/foxtracs/downloads', + issues_url: 'https://api.github.com/repos/anotherjesse/foxtracs/issues{/number}', + pulls_url: 'https://api.github.com/repos/anotherjesse/foxtracs/pulls{/number}', + milestones_url: 'https://api.github.com/repos/anotherjesse/foxtracs/milestones{/number}', + notifications_url: 'https://api.github.com/repos/anotherjesse/foxtracs/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/anotherjesse/foxtracs/labels{/name}', + releases_url: 'https://api.github.com/repos/anotherjesse/foxtracs/releases{/id}' }, + { id: 56, + name: 'fotomatic', + full_name: 'anotherjesse/fotomatic', + owner: + { login: 'anotherjesse', + id: 27, + avatar_url: 'https://avatars.githubusercontent.com/u/27?v=2', + gravatar_id: '50d10a8864accf0b2522c326381a4702', + url: 'https://api.github.com/users/anotherjesse', + html_url: 'https://github.com/anotherjesse', + followers_url: 'https://api.github.com/users/anotherjesse/followers', + following_url: 'https://api.github.com/users/anotherjesse/following{/other_user}', + gists_url: 'https://api.github.com/users/anotherjesse/gists{/gist_id}', + starred_url: 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/anotherjesse/subscriptions', + organizations_url: 'https://api.github.com/users/anotherjesse/orgs', + repos_url: 'https://api.github.com/users/anotherjesse/repos', + events_url: 'https://api.github.com/users/anotherjesse/events{/privacy}', + received_events_url: 'https://api.github.com/users/anotherjesse/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/anotherjesse/fotomatic', + description: 'Flash photo widget prototype - hacked at last SHDH of 2007', + fork: false, + url: 'https://api.github.com/repos/anotherjesse/fotomatic', + forks_url: 'https://api.github.com/repos/anotherjesse/fotomatic/forks', + keys_url: 'https://api.github.com/repos/anotherjesse/fotomatic/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/anotherjesse/fotomatic/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/anotherjesse/fotomatic/teams', + hooks_url: 'https://api.github.com/repos/anotherjesse/fotomatic/hooks', + issue_events_url: 'https://api.github.com/repos/anotherjesse/fotomatic/issues/events{/number}', + events_url: 'https://api.github.com/repos/anotherjesse/fotomatic/events', + assignees_url: 'https://api.github.com/repos/anotherjesse/fotomatic/assignees{/user}', + branches_url: 'https://api.github.com/repos/anotherjesse/fotomatic/branches{/branch}', + tags_url: 'https://api.github.com/repos/anotherjesse/fotomatic/tags', + blobs_url: 'https://api.github.com/repos/anotherjesse/fotomatic/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/anotherjesse/fotomatic/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/anotherjesse/fotomatic/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/anotherjesse/fotomatic/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/anotherjesse/fotomatic/statuses/{sha}', + languages_url: 'https://api.github.com/repos/anotherjesse/fotomatic/languages', + stargazers_url: 'https://api.github.com/repos/anotherjesse/fotomatic/stargazers', + contributors_url: 'https://api.github.com/repos/anotherjesse/fotomatic/contributors', + subscribers_url: 'https://api.github.com/repos/anotherjesse/fotomatic/subscribers', + subscription_url: 'https://api.github.com/repos/anotherjesse/fotomatic/subscription', + commits_url: 'https://api.github.com/repos/anotherjesse/fotomatic/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/anotherjesse/fotomatic/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/anotherjesse/fotomatic/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/anotherjesse/fotomatic/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/anotherjesse/fotomatic/contents/{+path}', + compare_url: 'https://api.github.com/repos/anotherjesse/fotomatic/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/anotherjesse/fotomatic/merges', + archive_url: 'https://api.github.com/repos/anotherjesse/fotomatic/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/anotherjesse/fotomatic/downloads', + issues_url: 'https://api.github.com/repos/anotherjesse/fotomatic/issues{/number}', + pulls_url: 'https://api.github.com/repos/anotherjesse/fotomatic/pulls{/number}', + milestones_url: 'https://api.github.com/repos/anotherjesse/fotomatic/milestones{/number}', + notifications_url: 'https://api.github.com/repos/anotherjesse/fotomatic/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/anotherjesse/fotomatic/labels{/name}', + releases_url: 'https://api.github.com/repos/anotherjesse/fotomatic/releases{/id}' }, + { id: 61, + name: 'glowstick', + full_name: 'mojombo/glowstick', + owner: + { login: 'mojombo', + id: 1, + avatar_url: 'https://avatars.githubusercontent.com/u/1?v=2', + gravatar_id: '25c7c18223fb42a4c6ae1c8db6f50f9b', + url: 'https://api.github.com/users/mojombo', + html_url: 'https://github.com/mojombo', + followers_url: 'https://api.github.com/users/mojombo/followers', + following_url: 'https://api.github.com/users/mojombo/following{/other_user}', + gists_url: 'https://api.github.com/users/mojombo/gists{/gist_id}', + starred_url: 'https://api.github.com/users/mojombo/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/mojombo/subscriptions', + organizations_url: 'https://api.github.com/users/mojombo/orgs', + repos_url: 'https://api.github.com/users/mojombo/repos', + events_url: 'https://api.github.com/users/mojombo/events{/privacy}', + received_events_url: 'https://api.github.com/users/mojombo/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/mojombo/glowstick', + description: 'A realtime, OpenGL graphing library for Ruby', + fork: false, + url: 'https://api.github.com/repos/mojombo/glowstick', + forks_url: 'https://api.github.com/repos/mojombo/glowstick/forks', + keys_url: 'https://api.github.com/repos/mojombo/glowstick/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/mojombo/glowstick/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/mojombo/glowstick/teams', + hooks_url: 'https://api.github.com/repos/mojombo/glowstick/hooks', + issue_events_url: 'https://api.github.com/repos/mojombo/glowstick/issues/events{/number}', + events_url: 'https://api.github.com/repos/mojombo/glowstick/events', + assignees_url: 'https://api.github.com/repos/mojombo/glowstick/assignees{/user}', + branches_url: 'https://api.github.com/repos/mojombo/glowstick/branches{/branch}', + tags_url: 'https://api.github.com/repos/mojombo/glowstick/tags', + blobs_url: 'https://api.github.com/repos/mojombo/glowstick/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/mojombo/glowstick/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/mojombo/glowstick/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/mojombo/glowstick/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/mojombo/glowstick/statuses/{sha}', + languages_url: 'https://api.github.com/repos/mojombo/glowstick/languages', + stargazers_url: 'https://api.github.com/repos/mojombo/glowstick/stargazers', + contributors_url: 'https://api.github.com/repos/mojombo/glowstick/contributors', + subscribers_url: 'https://api.github.com/repos/mojombo/glowstick/subscribers', + subscription_url: 'https://api.github.com/repos/mojombo/glowstick/subscription', + commits_url: 'https://api.github.com/repos/mojombo/glowstick/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/mojombo/glowstick/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/mojombo/glowstick/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/mojombo/glowstick/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/mojombo/glowstick/contents/{+path}', + compare_url: 'https://api.github.com/repos/mojombo/glowstick/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/mojombo/glowstick/merges', + archive_url: 'https://api.github.com/repos/mojombo/glowstick/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/mojombo/glowstick/downloads', + issues_url: 'https://api.github.com/repos/mojombo/glowstick/issues{/number}', + pulls_url: 'https://api.github.com/repos/mojombo/glowstick/pulls{/number}', + milestones_url: 'https://api.github.com/repos/mojombo/glowstick/milestones{/number}', + notifications_url: 'https://api.github.com/repos/mojombo/glowstick/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/mojombo/glowstick/labels{/name}', + releases_url: 'https://api.github.com/repos/mojombo/glowstick/releases{/id}' }, + { id: 63, + name: 'starling', + full_name: 'defunkt/starling', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/starling', + description: '', + fork: false, + url: 'https://api.github.com/repos/defunkt/starling', + forks_url: 'https://api.github.com/repos/defunkt/starling/forks', + keys_url: 'https://api.github.com/repos/defunkt/starling/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/starling/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/starling/teams', + hooks_url: 'https://api.github.com/repos/defunkt/starling/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/starling/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/starling/events', + assignees_url: 'https://api.github.com/repos/defunkt/starling/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/starling/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/starling/tags', + blobs_url: 'https://api.github.com/repos/defunkt/starling/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/starling/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/starling/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/starling/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/starling/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/starling/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/starling/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/starling/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/starling/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/starling/subscription', + commits_url: 'https://api.github.com/repos/defunkt/starling/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/starling/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/starling/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/starling/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/starling/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/starling/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/starling/merges', + archive_url: 'https://api.github.com/repos/defunkt/starling/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/starling/downloads', + issues_url: 'https://api.github.com/repos/defunkt/starling/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/starling/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/starling/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/starling/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/starling/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/starling/releases{/id}' }, + { id: 65, + name: 'merb-more', + full_name: 'wycats/merb-more', + owner: + { login: 'wycats', + id: 4, + avatar_url: 'https://avatars.githubusercontent.com/u/4?v=2', + gravatar_id: '428167a3ec72235ba971162924492609', + url: 'https://api.github.com/users/wycats', + html_url: 'https://github.com/wycats', + followers_url: 'https://api.github.com/users/wycats/followers', + following_url: 'https://api.github.com/users/wycats/following{/other_user}', + gists_url: 'https://api.github.com/users/wycats/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wycats/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wycats/subscriptions', + organizations_url: 'https://api.github.com/users/wycats/orgs', + repos_url: 'https://api.github.com/users/wycats/repos', + events_url: 'https://api.github.com/users/wycats/events{/privacy}', + received_events_url: 'https://api.github.com/users/wycats/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wycats/merb-more', + description: 'Merb More: The Full Stack. Take what you need; leave what you don\'t.', + fork: false, + url: 'https://api.github.com/repos/wycats/merb-more', + forks_url: 'https://api.github.com/repos/wycats/merb-more/forks', + keys_url: 'https://api.github.com/repos/wycats/merb-more/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wycats/merb-more/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wycats/merb-more/teams', + hooks_url: 'https://api.github.com/repos/wycats/merb-more/hooks', + issue_events_url: 'https://api.github.com/repos/wycats/merb-more/issues/events{/number}', + events_url: 'https://api.github.com/repos/wycats/merb-more/events', + assignees_url: 'https://api.github.com/repos/wycats/merb-more/assignees{/user}', + branches_url: 'https://api.github.com/repos/wycats/merb-more/branches{/branch}', + tags_url: 'https://api.github.com/repos/wycats/merb-more/tags', + blobs_url: 'https://api.github.com/repos/wycats/merb-more/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wycats/merb-more/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wycats/merb-more/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wycats/merb-more/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wycats/merb-more/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wycats/merb-more/languages', + stargazers_url: 'https://api.github.com/repos/wycats/merb-more/stargazers', + contributors_url: 'https://api.github.com/repos/wycats/merb-more/contributors', + subscribers_url: 'https://api.github.com/repos/wycats/merb-more/subscribers', + subscription_url: 'https://api.github.com/repos/wycats/merb-more/subscription', + commits_url: 'https://api.github.com/repos/wycats/merb-more/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wycats/merb-more/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wycats/merb-more/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wycats/merb-more/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wycats/merb-more/contents/{+path}', + compare_url: 'https://api.github.com/repos/wycats/merb-more/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wycats/merb-more/merges', + archive_url: 'https://api.github.com/repos/wycats/merb-more/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wycats/merb-more/downloads', + issues_url: 'https://api.github.com/repos/wycats/merb-more/issues{/number}', + pulls_url: 'https://api.github.com/repos/wycats/merb-more/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wycats/merb-more/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wycats/merb-more/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wycats/merb-more/labels{/name}', + releases_url: 'https://api.github.com/repos/wycats/merb-more/releases{/id}' }, + { id: 68, + name: 'thin', + full_name: 'macournoyer/thin', + owner: + { login: 'macournoyer', + id: 22, + avatar_url: 'https://avatars.githubusercontent.com/u/22?v=2', + gravatar_id: '0d949b795e64e062c4c001c6f5a6f3f3', + url: 'https://api.github.com/users/macournoyer', + html_url: 'https://github.com/macournoyer', + followers_url: 'https://api.github.com/users/macournoyer/followers', + following_url: 'https://api.github.com/users/macournoyer/following{/other_user}', + gists_url: 'https://api.github.com/users/macournoyer/gists{/gist_id}', + starred_url: 'https://api.github.com/users/macournoyer/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/macournoyer/subscriptions', + organizations_url: 'https://api.github.com/users/macournoyer/orgs', + repos_url: 'https://api.github.com/users/macournoyer/repos', + events_url: 'https://api.github.com/users/macournoyer/events{/privacy}', + received_events_url: 'https://api.github.com/users/macournoyer/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/macournoyer/thin', + description: 'A very fast & simple Ruby web server', + fork: false, + url: 'https://api.github.com/repos/macournoyer/thin', + forks_url: 'https://api.github.com/repos/macournoyer/thin/forks', + keys_url: 'https://api.github.com/repos/macournoyer/thin/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/macournoyer/thin/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/macournoyer/thin/teams', + hooks_url: 'https://api.github.com/repos/macournoyer/thin/hooks', + issue_events_url: 'https://api.github.com/repos/macournoyer/thin/issues/events{/number}', + events_url: 'https://api.github.com/repos/macournoyer/thin/events', + assignees_url: 'https://api.github.com/repos/macournoyer/thin/assignees{/user}', + branches_url: 'https://api.github.com/repos/macournoyer/thin/branches{/branch}', + tags_url: 'https://api.github.com/repos/macournoyer/thin/tags', + blobs_url: 'https://api.github.com/repos/macournoyer/thin/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/macournoyer/thin/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/macournoyer/thin/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/macournoyer/thin/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/macournoyer/thin/statuses/{sha}', + languages_url: 'https://api.github.com/repos/macournoyer/thin/languages', + stargazers_url: 'https://api.github.com/repos/macournoyer/thin/stargazers', + contributors_url: 'https://api.github.com/repos/macournoyer/thin/contributors', + subscribers_url: 'https://api.github.com/repos/macournoyer/thin/subscribers', + subscription_url: 'https://api.github.com/repos/macournoyer/thin/subscription', + commits_url: 'https://api.github.com/repos/macournoyer/thin/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/macournoyer/thin/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/macournoyer/thin/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/macournoyer/thin/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/macournoyer/thin/contents/{+path}', + compare_url: 'https://api.github.com/repos/macournoyer/thin/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/macournoyer/thin/merges', + archive_url: 'https://api.github.com/repos/macournoyer/thin/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/macournoyer/thin/downloads', + issues_url: 'https://api.github.com/repos/macournoyer/thin/issues{/number}', + pulls_url: 'https://api.github.com/repos/macournoyer/thin/pulls{/number}', + milestones_url: 'https://api.github.com/repos/macournoyer/thin/milestones{/number}', + notifications_url: 'https://api.github.com/repos/macournoyer/thin/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/macournoyer/thin/labels{/name}', + releases_url: 'https://api.github.com/repos/macournoyer/thin/releases{/id}' }, + { id: 71, + name: 'resource_controller', + full_name: 'jamesgolick/resource_controller', + owner: + { login: 'jamesgolick', + id: 37, + avatar_url: 'https://avatars.githubusercontent.com/u/37?v=2', + gravatar_id: 'f6eddf2f983d23c2d031e407852625e9', + url: 'https://api.github.com/users/jamesgolick', + html_url: 'https://github.com/jamesgolick', + followers_url: 'https://api.github.com/users/jamesgolick/followers', + following_url: 'https://api.github.com/users/jamesgolick/following{/other_user}', + gists_url: 'https://api.github.com/users/jamesgolick/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jamesgolick/subscriptions', + organizations_url: 'https://api.github.com/users/jamesgolick/orgs', + repos_url: 'https://api.github.com/users/jamesgolick/repos', + events_url: 'https://api.github.com/users/jamesgolick/events{/privacy}', + received_events_url: 'https://api.github.com/users/jamesgolick/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/jamesgolick/resource_controller', + description: 'Rails RESTful controller abstraction plugin.', + fork: false, + url: 'https://api.github.com/repos/jamesgolick/resource_controller', + forks_url: 'https://api.github.com/repos/jamesgolick/resource_controller/forks', + keys_url: 'https://api.github.com/repos/jamesgolick/resource_controller/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jamesgolick/resource_controller/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jamesgolick/resource_controller/teams', + hooks_url: 'https://api.github.com/repos/jamesgolick/resource_controller/hooks', + issue_events_url: 'https://api.github.com/repos/jamesgolick/resource_controller/issues/events{/number}', + events_url: 'https://api.github.com/repos/jamesgolick/resource_controller/events', + assignees_url: 'https://api.github.com/repos/jamesgolick/resource_controller/assignees{/user}', + branches_url: 'https://api.github.com/repos/jamesgolick/resource_controller/branches{/branch}', + tags_url: 'https://api.github.com/repos/jamesgolick/resource_controller/tags', + blobs_url: 'https://api.github.com/repos/jamesgolick/resource_controller/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jamesgolick/resource_controller/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jamesgolick/resource_controller/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jamesgolick/resource_controller/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jamesgolick/resource_controller/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jamesgolick/resource_controller/languages', + stargazers_url: 'https://api.github.com/repos/jamesgolick/resource_controller/stargazers', + contributors_url: 'https://api.github.com/repos/jamesgolick/resource_controller/contributors', + subscribers_url: 'https://api.github.com/repos/jamesgolick/resource_controller/subscribers', + subscription_url: 'https://api.github.com/repos/jamesgolick/resource_controller/subscription', + commits_url: 'https://api.github.com/repos/jamesgolick/resource_controller/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jamesgolick/resource_controller/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jamesgolick/resource_controller/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jamesgolick/resource_controller/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jamesgolick/resource_controller/contents/{+path}', + compare_url: 'https://api.github.com/repos/jamesgolick/resource_controller/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jamesgolick/resource_controller/merges', + archive_url: 'https://api.github.com/repos/jamesgolick/resource_controller/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jamesgolick/resource_controller/downloads', + issues_url: 'https://api.github.com/repos/jamesgolick/resource_controller/issues{/number}', + pulls_url: 'https://api.github.com/repos/jamesgolick/resource_controller/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jamesgolick/resource_controller/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jamesgolick/resource_controller/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jamesgolick/resource_controller/labels{/name}', + releases_url: 'https://api.github.com/repos/jamesgolick/resource_controller/releases{/id}' }, + { id: 73, + name: 'markaby', + full_name: 'jamesgolick/markaby', + owner: + { login: 'jamesgolick', + id: 37, + avatar_url: 'https://avatars.githubusercontent.com/u/37?v=2', + gravatar_id: 'f6eddf2f983d23c2d031e407852625e9', + url: 'https://api.github.com/users/jamesgolick', + html_url: 'https://github.com/jamesgolick', + followers_url: 'https://api.github.com/users/jamesgolick/followers', + following_url: 'https://api.github.com/users/jamesgolick/following{/other_user}', + gists_url: 'https://api.github.com/users/jamesgolick/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jamesgolick/subscriptions', + organizations_url: 'https://api.github.com/users/jamesgolick/orgs', + repos_url: 'https://api.github.com/users/jamesgolick/repos', + events_url: 'https://api.github.com/users/jamesgolick/events{/privacy}', + received_events_url: 'https://api.github.com/users/jamesgolick/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/jamesgolick/markaby', + description: 'Markaby patched to run on rails 2.0.2', + fork: false, + url: 'https://api.github.com/repos/jamesgolick/markaby', + forks_url: 'https://api.github.com/repos/jamesgolick/markaby/forks', + keys_url: 'https://api.github.com/repos/jamesgolick/markaby/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jamesgolick/markaby/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jamesgolick/markaby/teams', + hooks_url: 'https://api.github.com/repos/jamesgolick/markaby/hooks', + issue_events_url: 'https://api.github.com/repos/jamesgolick/markaby/issues/events{/number}', + events_url: 'https://api.github.com/repos/jamesgolick/markaby/events', + assignees_url: 'https://api.github.com/repos/jamesgolick/markaby/assignees{/user}', + branches_url: 'https://api.github.com/repos/jamesgolick/markaby/branches{/branch}', + tags_url: 'https://api.github.com/repos/jamesgolick/markaby/tags', + blobs_url: 'https://api.github.com/repos/jamesgolick/markaby/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jamesgolick/markaby/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jamesgolick/markaby/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jamesgolick/markaby/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jamesgolick/markaby/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jamesgolick/markaby/languages', + stargazers_url: 'https://api.github.com/repos/jamesgolick/markaby/stargazers', + contributors_url: 'https://api.github.com/repos/jamesgolick/markaby/contributors', + subscribers_url: 'https://api.github.com/repos/jamesgolick/markaby/subscribers', + subscription_url: 'https://api.github.com/repos/jamesgolick/markaby/subscription', + commits_url: 'https://api.github.com/repos/jamesgolick/markaby/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jamesgolick/markaby/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jamesgolick/markaby/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jamesgolick/markaby/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jamesgolick/markaby/contents/{+path}', + compare_url: 'https://api.github.com/repos/jamesgolick/markaby/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jamesgolick/markaby/merges', + archive_url: 'https://api.github.com/repos/jamesgolick/markaby/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jamesgolick/markaby/downloads', + issues_url: 'https://api.github.com/repos/jamesgolick/markaby/issues{/number}', + pulls_url: 'https://api.github.com/repos/jamesgolick/markaby/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jamesgolick/markaby/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jamesgolick/markaby/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jamesgolick/markaby/labels{/name}', + releases_url: 'https://api.github.com/repos/jamesgolick/markaby/releases{/id}' }, + { id: 74, + name: 'enum_field', + full_name: 'jamesgolick/enum_field', + owner: + { login: 'jamesgolick', + id: 37, + avatar_url: 'https://avatars.githubusercontent.com/u/37?v=2', + gravatar_id: 'f6eddf2f983d23c2d031e407852625e9', + url: 'https://api.github.com/users/jamesgolick', + html_url: 'https://github.com/jamesgolick', + followers_url: 'https://api.github.com/users/jamesgolick/followers', + following_url: 'https://api.github.com/users/jamesgolick/following{/other_user}', + gists_url: 'https://api.github.com/users/jamesgolick/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jamesgolick/subscriptions', + organizations_url: 'https://api.github.com/users/jamesgolick/orgs', + repos_url: 'https://api.github.com/users/jamesgolick/repos', + events_url: 'https://api.github.com/users/jamesgolick/events{/privacy}', + received_events_url: 'https://api.github.com/users/jamesgolick/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/jamesgolick/enum_field', + description: '', + fork: false, + url: 'https://api.github.com/repos/jamesgolick/enum_field', + forks_url: 'https://api.github.com/repos/jamesgolick/enum_field/forks', + keys_url: 'https://api.github.com/repos/jamesgolick/enum_field/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jamesgolick/enum_field/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jamesgolick/enum_field/teams', + hooks_url: 'https://api.github.com/repos/jamesgolick/enum_field/hooks', + issue_events_url: 'https://api.github.com/repos/jamesgolick/enum_field/issues/events{/number}', + events_url: 'https://api.github.com/repos/jamesgolick/enum_field/events', + assignees_url: 'https://api.github.com/repos/jamesgolick/enum_field/assignees{/user}', + branches_url: 'https://api.github.com/repos/jamesgolick/enum_field/branches{/branch}', + tags_url: 'https://api.github.com/repos/jamesgolick/enum_field/tags', + blobs_url: 'https://api.github.com/repos/jamesgolick/enum_field/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jamesgolick/enum_field/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jamesgolick/enum_field/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jamesgolick/enum_field/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jamesgolick/enum_field/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jamesgolick/enum_field/languages', + stargazers_url: 'https://api.github.com/repos/jamesgolick/enum_field/stargazers', + contributors_url: 'https://api.github.com/repos/jamesgolick/enum_field/contributors', + subscribers_url: 'https://api.github.com/repos/jamesgolick/enum_field/subscribers', + subscription_url: 'https://api.github.com/repos/jamesgolick/enum_field/subscription', + commits_url: 'https://api.github.com/repos/jamesgolick/enum_field/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jamesgolick/enum_field/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jamesgolick/enum_field/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jamesgolick/enum_field/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jamesgolick/enum_field/contents/{+path}', + compare_url: 'https://api.github.com/repos/jamesgolick/enum_field/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jamesgolick/enum_field/merges', + archive_url: 'https://api.github.com/repos/jamesgolick/enum_field/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jamesgolick/enum_field/downloads', + issues_url: 'https://api.github.com/repos/jamesgolick/enum_field/issues{/number}', + pulls_url: 'https://api.github.com/repos/jamesgolick/enum_field/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jamesgolick/enum_field/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jamesgolick/enum_field/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jamesgolick/enum_field/labels{/name}', + releases_url: 'https://api.github.com/repos/jamesgolick/enum_field/releases{/id}' }, + { id: 75, + name: 'subtlety', + full_name: 'defunkt/subtlety', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/subtlety', + description: 'Subtlety: SVN => RSS, hAtom => Atom', + fork: false, + url: 'https://api.github.com/repos/defunkt/subtlety', + forks_url: 'https://api.github.com/repos/defunkt/subtlety/forks', + keys_url: 'https://api.github.com/repos/defunkt/subtlety/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/subtlety/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/subtlety/teams', + hooks_url: 'https://api.github.com/repos/defunkt/subtlety/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/subtlety/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/subtlety/events', + assignees_url: 'https://api.github.com/repos/defunkt/subtlety/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/subtlety/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/subtlety/tags', + blobs_url: 'https://api.github.com/repos/defunkt/subtlety/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/subtlety/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/subtlety/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/subtlety/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/subtlety/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/subtlety/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/subtlety/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/subtlety/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/subtlety/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/subtlety/subscription', + commits_url: 'https://api.github.com/repos/defunkt/subtlety/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/subtlety/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/subtlety/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/subtlety/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/subtlety/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/subtlety/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/subtlety/merges', + archive_url: 'https://api.github.com/repos/defunkt/subtlety/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/subtlety/downloads', + issues_url: 'https://api.github.com/repos/defunkt/subtlety/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/subtlety/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/subtlety/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/subtlety/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/subtlety/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/subtlety/releases{/id}' }, + { id: 92, + name: 'zippy', + full_name: 'defunkt/zippy', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/zippy', + description: 'Zippy lil’ zipcode lib.', + fork: false, + url: 'https://api.github.com/repos/defunkt/zippy', + forks_url: 'https://api.github.com/repos/defunkt/zippy/forks', + keys_url: 'https://api.github.com/repos/defunkt/zippy/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/zippy/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/zippy/teams', + hooks_url: 'https://api.github.com/repos/defunkt/zippy/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/zippy/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/zippy/events', + assignees_url: 'https://api.github.com/repos/defunkt/zippy/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/zippy/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/zippy/tags', + blobs_url: 'https://api.github.com/repos/defunkt/zippy/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/zippy/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/zippy/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/zippy/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/zippy/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/zippy/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/zippy/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/zippy/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/zippy/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/zippy/subscription', + commits_url: 'https://api.github.com/repos/defunkt/zippy/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/zippy/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/zippy/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/zippy/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/zippy/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/zippy/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/zippy/merges', + archive_url: 'https://api.github.com/repos/defunkt/zippy/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/zippy/downloads', + issues_url: 'https://api.github.com/repos/defunkt/zippy/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/zippy/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/zippy/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/zippy/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/zippy/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/zippy/releases{/id}' }, + { id: 93, + name: 'cache_fu', + full_name: 'defunkt/cache_fu', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/cache_fu', + description: 'Ghost from Christmas past. Unmaintained.', + fork: false, + url: 'https://api.github.com/repos/defunkt/cache_fu', + forks_url: 'https://api.github.com/repos/defunkt/cache_fu/forks', + keys_url: 'https://api.github.com/repos/defunkt/cache_fu/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/cache_fu/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/cache_fu/teams', + hooks_url: 'https://api.github.com/repos/defunkt/cache_fu/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/cache_fu/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/cache_fu/events', + assignees_url: 'https://api.github.com/repos/defunkt/cache_fu/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/cache_fu/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/cache_fu/tags', + blobs_url: 'https://api.github.com/repos/defunkt/cache_fu/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/cache_fu/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/cache_fu/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/cache_fu/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/cache_fu/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/cache_fu/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/cache_fu/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/cache_fu/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/cache_fu/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/cache_fu/subscription', + commits_url: 'https://api.github.com/repos/defunkt/cache_fu/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/cache_fu/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/cache_fu/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/cache_fu/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/cache_fu/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/cache_fu/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/cache_fu/merges', + archive_url: 'https://api.github.com/repos/defunkt/cache_fu/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/cache_fu/downloads', + issues_url: 'https://api.github.com/repos/defunkt/cache_fu/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/cache_fu/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/cache_fu/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/cache_fu/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/cache_fu/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/cache_fu/releases{/id}' }, + { id: 95, + name: 'phosphor', + full_name: 'KirinDave/phosphor', + owner: + { login: 'KirinDave', + id: 36, + avatar_url: 'https://avatars.githubusercontent.com/u/36?v=2', + gravatar_id: 'd4fabd6c08ac228a3ff846d9d0d1580e', + url: 'https://api.github.com/users/KirinDave', + html_url: 'https://github.com/KirinDave', + followers_url: 'https://api.github.com/users/KirinDave/followers', + following_url: 'https://api.github.com/users/KirinDave/following{/other_user}', + gists_url: 'https://api.github.com/users/KirinDave/gists{/gist_id}', + starred_url: 'https://api.github.com/users/KirinDave/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/KirinDave/subscriptions', + organizations_url: 'https://api.github.com/users/KirinDave/orgs', + repos_url: 'https://api.github.com/users/KirinDave/repos', + events_url: 'https://api.github.com/users/KirinDave/events{/privacy}', + received_events_url: 'https://api.github.com/users/KirinDave/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/KirinDave/phosphor', + description: ' A ruby library to inexpensively emit runtime events via Dtrace', + fork: false, + url: 'https://api.github.com/repos/KirinDave/phosphor', + forks_url: 'https://api.github.com/repos/KirinDave/phosphor/forks', + keys_url: 'https://api.github.com/repos/KirinDave/phosphor/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/KirinDave/phosphor/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/KirinDave/phosphor/teams', + hooks_url: 'https://api.github.com/repos/KirinDave/phosphor/hooks', + issue_events_url: 'https://api.github.com/repos/KirinDave/phosphor/issues/events{/number}', + events_url: 'https://api.github.com/repos/KirinDave/phosphor/events', + assignees_url: 'https://api.github.com/repos/KirinDave/phosphor/assignees{/user}', + branches_url: 'https://api.github.com/repos/KirinDave/phosphor/branches{/branch}', + tags_url: 'https://api.github.com/repos/KirinDave/phosphor/tags', + blobs_url: 'https://api.github.com/repos/KirinDave/phosphor/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/KirinDave/phosphor/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/KirinDave/phosphor/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/KirinDave/phosphor/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/KirinDave/phosphor/statuses/{sha}', + languages_url: 'https://api.github.com/repos/KirinDave/phosphor/languages', + stargazers_url: 'https://api.github.com/repos/KirinDave/phosphor/stargazers', + contributors_url: 'https://api.github.com/repos/KirinDave/phosphor/contributors', + subscribers_url: 'https://api.github.com/repos/KirinDave/phosphor/subscribers', + subscription_url: 'https://api.github.com/repos/KirinDave/phosphor/subscription', + commits_url: 'https://api.github.com/repos/KirinDave/phosphor/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/KirinDave/phosphor/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/KirinDave/phosphor/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/KirinDave/phosphor/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/KirinDave/phosphor/contents/{+path}', + compare_url: 'https://api.github.com/repos/KirinDave/phosphor/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/KirinDave/phosphor/merges', + archive_url: 'https://api.github.com/repos/KirinDave/phosphor/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/KirinDave/phosphor/downloads', + issues_url: 'https://api.github.com/repos/KirinDave/phosphor/issues{/number}', + pulls_url: 'https://api.github.com/repos/KirinDave/phosphor/pulls{/number}', + milestones_url: 'https://api.github.com/repos/KirinDave/phosphor/milestones{/number}', + notifications_url: 'https://api.github.com/repos/KirinDave/phosphor/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/KirinDave/phosphor/labels{/name}', + releases_url: 'https://api.github.com/repos/KirinDave/phosphor/releases{/id}' }, + { id: 98, + name: 'sinatra', + full_name: 'bmizerany/sinatra', + owner: + { login: 'bmizerany', + id: 46, + avatar_url: 'https://avatars.githubusercontent.com/u/46?v=2', + gravatar_id: '1a250566b475961b9b36abf359950c76', + url: 'https://api.github.com/users/bmizerany', + html_url: 'https://github.com/bmizerany', + followers_url: 'https://api.github.com/users/bmizerany/followers', + following_url: 'https://api.github.com/users/bmizerany/following{/other_user}', + gists_url: 'https://api.github.com/users/bmizerany/gists{/gist_id}', + starred_url: 'https://api.github.com/users/bmizerany/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/bmizerany/subscriptions', + organizations_url: 'https://api.github.com/users/bmizerany/orgs', + repos_url: 'https://api.github.com/users/bmizerany/repos', + events_url: 'https://api.github.com/users/bmizerany/events{/privacy}', + received_events_url: 'https://api.github.com/users/bmizerany/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/bmizerany/sinatra', + description: '(offically at github.com/sinatra/sinatra) Classy web-development dressed in a DSL', + fork: false, + url: 'https://api.github.com/repos/bmizerany/sinatra', + forks_url: 'https://api.github.com/repos/bmizerany/sinatra/forks', + keys_url: 'https://api.github.com/repos/bmizerany/sinatra/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/bmizerany/sinatra/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/bmizerany/sinatra/teams', + hooks_url: 'https://api.github.com/repos/bmizerany/sinatra/hooks', + issue_events_url: 'https://api.github.com/repos/bmizerany/sinatra/issues/events{/number}', + events_url: 'https://api.github.com/repos/bmizerany/sinatra/events', + assignees_url: 'https://api.github.com/repos/bmizerany/sinatra/assignees{/user}', + branches_url: 'https://api.github.com/repos/bmizerany/sinatra/branches{/branch}', + tags_url: 'https://api.github.com/repos/bmizerany/sinatra/tags', + blobs_url: 'https://api.github.com/repos/bmizerany/sinatra/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/bmizerany/sinatra/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/bmizerany/sinatra/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/bmizerany/sinatra/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/bmizerany/sinatra/statuses/{sha}', + languages_url: 'https://api.github.com/repos/bmizerany/sinatra/languages', + stargazers_url: 'https://api.github.com/repos/bmizerany/sinatra/stargazers', + contributors_url: 'https://api.github.com/repos/bmizerany/sinatra/contributors', + subscribers_url: 'https://api.github.com/repos/bmizerany/sinatra/subscribers', + subscription_url: 'https://api.github.com/repos/bmizerany/sinatra/subscription', + commits_url: 'https://api.github.com/repos/bmizerany/sinatra/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/bmizerany/sinatra/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/bmizerany/sinatra/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/bmizerany/sinatra/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/bmizerany/sinatra/contents/{+path}', + compare_url: 'https://api.github.com/repos/bmizerany/sinatra/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/bmizerany/sinatra/merges', + archive_url: 'https://api.github.com/repos/bmizerany/sinatra/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/bmizerany/sinatra/downloads', + issues_url: 'https://api.github.com/repos/bmizerany/sinatra/issues{/number}', + pulls_url: 'https://api.github.com/repos/bmizerany/sinatra/pulls{/number}', + milestones_url: 'https://api.github.com/repos/bmizerany/sinatra/milestones{/number}', + notifications_url: 'https://api.github.com/repos/bmizerany/sinatra/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/bmizerany/sinatra/labels{/name}', + releases_url: 'https://api.github.com/repos/bmizerany/sinatra/releases{/id}' }, + { id: 102, + name: 'gsa-prototype', + full_name: 'jnewland/gsa-prototype', + owner: + { login: 'jnewland', + id: 47, + avatar_url: 'https://avatars.githubusercontent.com/u/47?v=2', + gravatar_id: 'f317439da90c3176adc8938bcf5181ff', + url: 'https://api.github.com/users/jnewland', + html_url: 'https://github.com/jnewland', + followers_url: 'https://api.github.com/users/jnewland/followers', + following_url: 'https://api.github.com/users/jnewland/following{/other_user}', + gists_url: 'https://api.github.com/users/jnewland/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnewland/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnewland/subscriptions', + organizations_url: 'https://api.github.com/users/jnewland/orgs', + repos_url: 'https://api.github.com/users/jnewland/repos', + events_url: 'https://api.github.com/users/jnewland/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnewland/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/jnewland/gsa-prototype', + description: 'Prototype/Javascript wrapper for the Google Search Appliance Search Protocol. Fancy cross-domain JSON support included.', + fork: false, + url: 'https://api.github.com/repos/jnewland/gsa-prototype', + forks_url: 'https://api.github.com/repos/jnewland/gsa-prototype/forks', + keys_url: 'https://api.github.com/repos/jnewland/gsa-prototype/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnewland/gsa-prototype/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnewland/gsa-prototype/teams', + hooks_url: 'https://api.github.com/repos/jnewland/gsa-prototype/hooks', + issue_events_url: 'https://api.github.com/repos/jnewland/gsa-prototype/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnewland/gsa-prototype/events', + assignees_url: 'https://api.github.com/repos/jnewland/gsa-prototype/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnewland/gsa-prototype/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnewland/gsa-prototype/tags', + blobs_url: 'https://api.github.com/repos/jnewland/gsa-prototype/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnewland/gsa-prototype/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnewland/gsa-prototype/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnewland/gsa-prototype/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnewland/gsa-prototype/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnewland/gsa-prototype/languages', + stargazers_url: 'https://api.github.com/repos/jnewland/gsa-prototype/stargazers', + contributors_url: 'https://api.github.com/repos/jnewland/gsa-prototype/contributors', + subscribers_url: 'https://api.github.com/repos/jnewland/gsa-prototype/subscribers', + subscription_url: 'https://api.github.com/repos/jnewland/gsa-prototype/subscription', + commits_url: 'https://api.github.com/repos/jnewland/gsa-prototype/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnewland/gsa-prototype/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnewland/gsa-prototype/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnewland/gsa-prototype/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnewland/gsa-prototype/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnewland/gsa-prototype/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnewland/gsa-prototype/merges', + archive_url: 'https://api.github.com/repos/jnewland/gsa-prototype/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnewland/gsa-prototype/downloads', + issues_url: 'https://api.github.com/repos/jnewland/gsa-prototype/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnewland/gsa-prototype/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnewland/gsa-prototype/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnewland/gsa-prototype/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnewland/gsa-prototype/labels{/name}', + releases_url: 'https://api.github.com/repos/jnewland/gsa-prototype/releases{/id}' }, + { id: 105, + name: 'duplikate', + full_name: 'technoweenie/duplikate', + owner: + { login: 'technoweenie', + id: 21, + avatar_url: 'https://avatars.githubusercontent.com/u/21?v=2', + gravatar_id: '821395fe70906c8290df7f18ac4ac6cf', + url: 'https://api.github.com/users/technoweenie', + html_url: 'https://github.com/technoweenie', + followers_url: 'https://api.github.com/users/technoweenie/followers', + following_url: 'https://api.github.com/users/technoweenie/following{/other_user}', + gists_url: 'https://api.github.com/users/technoweenie/gists{/gist_id}', + starred_url: 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/technoweenie/subscriptions', + organizations_url: 'https://api.github.com/users/technoweenie/orgs', + repos_url: 'https://api.github.com/users/technoweenie/repos', + events_url: 'https://api.github.com/users/technoweenie/events{/privacy}', + received_events_url: 'https://api.github.com/users/technoweenie/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/technoweenie/duplikate', + description: 'Syncs one directory to another (example: a git project to an svn repo)', + fork: false, + url: 'https://api.github.com/repos/technoweenie/duplikate', + forks_url: 'https://api.github.com/repos/technoweenie/duplikate/forks', + keys_url: 'https://api.github.com/repos/technoweenie/duplikate/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/technoweenie/duplikate/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/technoweenie/duplikate/teams', + hooks_url: 'https://api.github.com/repos/technoweenie/duplikate/hooks', + issue_events_url: 'https://api.github.com/repos/technoweenie/duplikate/issues/events{/number}', + events_url: 'https://api.github.com/repos/technoweenie/duplikate/events', + assignees_url: 'https://api.github.com/repos/technoweenie/duplikate/assignees{/user}', + branches_url: 'https://api.github.com/repos/technoweenie/duplikate/branches{/branch}', + tags_url: 'https://api.github.com/repos/technoweenie/duplikate/tags', + blobs_url: 'https://api.github.com/repos/technoweenie/duplikate/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/technoweenie/duplikate/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/technoweenie/duplikate/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/technoweenie/duplikate/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/technoweenie/duplikate/statuses/{sha}', + languages_url: 'https://api.github.com/repos/technoweenie/duplikate/languages', + stargazers_url: 'https://api.github.com/repos/technoweenie/duplikate/stargazers', + contributors_url: 'https://api.github.com/repos/technoweenie/duplikate/contributors', + subscribers_url: 'https://api.github.com/repos/technoweenie/duplikate/subscribers', + subscription_url: 'https://api.github.com/repos/technoweenie/duplikate/subscription', + commits_url: 'https://api.github.com/repos/technoweenie/duplikate/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/technoweenie/duplikate/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/technoweenie/duplikate/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/technoweenie/duplikate/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/technoweenie/duplikate/contents/{+path}', + compare_url: 'https://api.github.com/repos/technoweenie/duplikate/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/technoweenie/duplikate/merges', + archive_url: 'https://api.github.com/repos/technoweenie/duplikate/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/technoweenie/duplikate/downloads', + issues_url: 'https://api.github.com/repos/technoweenie/duplikate/issues{/number}', + pulls_url: 'https://api.github.com/repos/technoweenie/duplikate/pulls{/number}', + milestones_url: 'https://api.github.com/repos/technoweenie/duplikate/milestones{/number}', + notifications_url: 'https://api.github.com/repos/technoweenie/duplikate/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/technoweenie/duplikate/labels{/name}', + releases_url: 'https://api.github.com/repos/technoweenie/duplikate/releases{/id}' }, + { id: 118, + name: 'lazy_record', + full_name: 'jnewland/lazy_record', + owner: + { login: 'jnewland', + id: 47, + avatar_url: 'https://avatars.githubusercontent.com/u/47?v=2', + gravatar_id: 'f317439da90c3176adc8938bcf5181ff', + url: 'https://api.github.com/users/jnewland', + html_url: 'https://github.com/jnewland', + followers_url: 'https://api.github.com/users/jnewland/followers', + following_url: 'https://api.github.com/users/jnewland/following{/other_user}', + gists_url: 'https://api.github.com/users/jnewland/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnewland/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnewland/subscriptions', + organizations_url: 'https://api.github.com/users/jnewland/orgs', + repos_url: 'https://api.github.com/users/jnewland/repos', + events_url: 'https://api.github.com/users/jnewland/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnewland/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/jnewland/lazy_record', + description: 'Proof of concept Lazy-Loading for ActiveRecord. Inspired by the \'kickers\' of Ambition.', + fork: false, + url: 'https://api.github.com/repos/jnewland/lazy_record', + forks_url: 'https://api.github.com/repos/jnewland/lazy_record/forks', + keys_url: 'https://api.github.com/repos/jnewland/lazy_record/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnewland/lazy_record/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnewland/lazy_record/teams', + hooks_url: 'https://api.github.com/repos/jnewland/lazy_record/hooks', + issue_events_url: 'https://api.github.com/repos/jnewland/lazy_record/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnewland/lazy_record/events', + assignees_url: 'https://api.github.com/repos/jnewland/lazy_record/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnewland/lazy_record/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnewland/lazy_record/tags', + blobs_url: 'https://api.github.com/repos/jnewland/lazy_record/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnewland/lazy_record/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnewland/lazy_record/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnewland/lazy_record/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnewland/lazy_record/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnewland/lazy_record/languages', + stargazers_url: 'https://api.github.com/repos/jnewland/lazy_record/stargazers', + contributors_url: 'https://api.github.com/repos/jnewland/lazy_record/contributors', + subscribers_url: 'https://api.github.com/repos/jnewland/lazy_record/subscribers', + subscription_url: 'https://api.github.com/repos/jnewland/lazy_record/subscription', + commits_url: 'https://api.github.com/repos/jnewland/lazy_record/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnewland/lazy_record/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnewland/lazy_record/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnewland/lazy_record/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnewland/lazy_record/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnewland/lazy_record/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnewland/lazy_record/merges', + archive_url: 'https://api.github.com/repos/jnewland/lazy_record/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnewland/lazy_record/downloads', + issues_url: 'https://api.github.com/repos/jnewland/lazy_record/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnewland/lazy_record/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnewland/lazy_record/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnewland/lazy_record/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnewland/lazy_record/labels{/name}', + releases_url: 'https://api.github.com/repos/jnewland/lazy_record/releases{/id}' }, + { id: 119, + name: 'gsa-feeds', + full_name: 'jnewland/gsa-feeds', + owner: + { login: 'jnewland', + id: 47, + avatar_url: 'https://avatars.githubusercontent.com/u/47?v=2', + gravatar_id: 'f317439da90c3176adc8938bcf5181ff', + url: 'https://api.github.com/users/jnewland', + html_url: 'https://github.com/jnewland', + followers_url: 'https://api.github.com/users/jnewland/followers', + following_url: 'https://api.github.com/users/jnewland/following{/other_user}', + gists_url: 'https://api.github.com/users/jnewland/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnewland/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnewland/subscriptions', + organizations_url: 'https://api.github.com/users/jnewland/orgs', + repos_url: 'https://api.github.com/users/jnewland/repos', + events_url: 'https://api.github.com/users/jnewland/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnewland/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/jnewland/gsa-feeds', + description: 'A Ruby wrapper for the Google Search Appliance Feeds Protocol', + fork: false, + url: 'https://api.github.com/repos/jnewland/gsa-feeds', + forks_url: 'https://api.github.com/repos/jnewland/gsa-feeds/forks', + keys_url: 'https://api.github.com/repos/jnewland/gsa-feeds/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnewland/gsa-feeds/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnewland/gsa-feeds/teams', + hooks_url: 'https://api.github.com/repos/jnewland/gsa-feeds/hooks', + issue_events_url: 'https://api.github.com/repos/jnewland/gsa-feeds/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnewland/gsa-feeds/events', + assignees_url: 'https://api.github.com/repos/jnewland/gsa-feeds/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnewland/gsa-feeds/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnewland/gsa-feeds/tags', + blobs_url: 'https://api.github.com/repos/jnewland/gsa-feeds/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnewland/gsa-feeds/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnewland/gsa-feeds/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnewland/gsa-feeds/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnewland/gsa-feeds/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnewland/gsa-feeds/languages', + stargazers_url: 'https://api.github.com/repos/jnewland/gsa-feeds/stargazers', + contributors_url: 'https://api.github.com/repos/jnewland/gsa-feeds/contributors', + subscribers_url: 'https://api.github.com/repos/jnewland/gsa-feeds/subscribers', + subscription_url: 'https://api.github.com/repos/jnewland/gsa-feeds/subscription', + commits_url: 'https://api.github.com/repos/jnewland/gsa-feeds/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnewland/gsa-feeds/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnewland/gsa-feeds/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnewland/gsa-feeds/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnewland/gsa-feeds/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnewland/gsa-feeds/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnewland/gsa-feeds/merges', + archive_url: 'https://api.github.com/repos/jnewland/gsa-feeds/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnewland/gsa-feeds/downloads', + issues_url: 'https://api.github.com/repos/jnewland/gsa-feeds/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnewland/gsa-feeds/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnewland/gsa-feeds/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnewland/gsa-feeds/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnewland/gsa-feeds/labels{/name}', + releases_url: 'https://api.github.com/repos/jnewland/gsa-feeds/releases{/id}' }, + { id: 120, + name: 'votigoto', + full_name: 'jnewland/votigoto', + owner: + { login: 'jnewland', + id: 47, + avatar_url: 'https://avatars.githubusercontent.com/u/47?v=2', + gravatar_id: 'f317439da90c3176adc8938bcf5181ff', + url: 'https://api.github.com/users/jnewland', + html_url: 'https://github.com/jnewland', + followers_url: 'https://api.github.com/users/jnewland/followers', + following_url: 'https://api.github.com/users/jnewland/following{/other_user}', + gists_url: 'https://api.github.com/users/jnewland/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnewland/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnewland/subscriptions', + organizations_url: 'https://api.github.com/users/jnewland/orgs', + repos_url: 'https://api.github.com/users/jnewland/repos', + events_url: 'https://api.github.com/users/jnewland/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnewland/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/jnewland/votigoto', + description: 'Ruby API wrapper for the TiVoToGo protocol. Use it to access a list of recorded shows and programs on your Tivo.', + fork: false, + url: 'https://api.github.com/repos/jnewland/votigoto', + forks_url: 'https://api.github.com/repos/jnewland/votigoto/forks', + keys_url: 'https://api.github.com/repos/jnewland/votigoto/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnewland/votigoto/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnewland/votigoto/teams', + hooks_url: 'https://api.github.com/repos/jnewland/votigoto/hooks', + issue_events_url: 'https://api.github.com/repos/jnewland/votigoto/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnewland/votigoto/events', + assignees_url: 'https://api.github.com/repos/jnewland/votigoto/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnewland/votigoto/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnewland/votigoto/tags', + blobs_url: 'https://api.github.com/repos/jnewland/votigoto/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnewland/votigoto/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnewland/votigoto/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnewland/votigoto/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnewland/votigoto/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnewland/votigoto/languages', + stargazers_url: 'https://api.github.com/repos/jnewland/votigoto/stargazers', + contributors_url: 'https://api.github.com/repos/jnewland/votigoto/contributors', + subscribers_url: 'https://api.github.com/repos/jnewland/votigoto/subscribers', + subscription_url: 'https://api.github.com/repos/jnewland/votigoto/subscription', + commits_url: 'https://api.github.com/repos/jnewland/votigoto/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnewland/votigoto/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnewland/votigoto/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnewland/votigoto/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnewland/votigoto/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnewland/votigoto/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnewland/votigoto/merges', + archive_url: 'https://api.github.com/repos/jnewland/votigoto/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnewland/votigoto/downloads', + issues_url: 'https://api.github.com/repos/jnewland/votigoto/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnewland/votigoto/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnewland/votigoto/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnewland/votigoto/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnewland/votigoto/labels{/name}', + releases_url: 'https://api.github.com/repos/jnewland/votigoto/releases{/id}' }, + { id: 127, + name: 'mofo', + full_name: 'defunkt/mofo', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/mofo', + description: 'Mofo was a fast and simple microformat parser, based on a concise DSL and Hpricot. No longer maintained.', + fork: false, + url: 'https://api.github.com/repos/defunkt/mofo', + forks_url: 'https://api.github.com/repos/defunkt/mofo/forks', + keys_url: 'https://api.github.com/repos/defunkt/mofo/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/mofo/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/mofo/teams', + hooks_url: 'https://api.github.com/repos/defunkt/mofo/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/mofo/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/mofo/events', + assignees_url: 'https://api.github.com/repos/defunkt/mofo/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/mofo/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/mofo/tags', + blobs_url: 'https://api.github.com/repos/defunkt/mofo/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/mofo/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/mofo/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/mofo/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/mofo/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/mofo/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/mofo/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/mofo/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/mofo/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/mofo/subscription', + commits_url: 'https://api.github.com/repos/defunkt/mofo/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/mofo/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/mofo/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/mofo/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/mofo/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/mofo/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/mofo/merges', + archive_url: 'https://api.github.com/repos/defunkt/mofo/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/mofo/downloads', + issues_url: 'https://api.github.com/repos/defunkt/mofo/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/mofo/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/mofo/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/mofo/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/mofo/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/mofo/releases{/id}' }, + { id: 129, + name: 'xhtmlize', + full_name: 'jnewland/xhtmlize', + owner: + { login: 'jnewland', + id: 47, + avatar_url: 'https://avatars.githubusercontent.com/u/47?v=2', + gravatar_id: 'f317439da90c3176adc8938bcf5181ff', + url: 'https://api.github.com/users/jnewland', + html_url: 'https://github.com/jnewland', + followers_url: 'https://api.github.com/users/jnewland/followers', + following_url: 'https://api.github.com/users/jnewland/following{/other_user}', + gists_url: 'https://api.github.com/users/jnewland/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnewland/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnewland/subscriptions', + organizations_url: 'https://api.github.com/users/jnewland/orgs', + repos_url: 'https://api.github.com/users/jnewland/repos', + events_url: 'https://api.github.com/users/jnewland/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnewland/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/jnewland/xhtmlize', + description: 'Rails helper to XHTML-ize chunks of user submitted HTML. For the standardista in all of us', + fork: false, + url: 'https://api.github.com/repos/jnewland/xhtmlize', + forks_url: 'https://api.github.com/repos/jnewland/xhtmlize/forks', + keys_url: 'https://api.github.com/repos/jnewland/xhtmlize/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnewland/xhtmlize/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnewland/xhtmlize/teams', + hooks_url: 'https://api.github.com/repos/jnewland/xhtmlize/hooks', + issue_events_url: 'https://api.github.com/repos/jnewland/xhtmlize/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnewland/xhtmlize/events', + assignees_url: 'https://api.github.com/repos/jnewland/xhtmlize/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnewland/xhtmlize/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnewland/xhtmlize/tags', + blobs_url: 'https://api.github.com/repos/jnewland/xhtmlize/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnewland/xhtmlize/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnewland/xhtmlize/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnewland/xhtmlize/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnewland/xhtmlize/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnewland/xhtmlize/languages', + stargazers_url: 'https://api.github.com/repos/jnewland/xhtmlize/stargazers', + contributors_url: 'https://api.github.com/repos/jnewland/xhtmlize/contributors', + subscribers_url: 'https://api.github.com/repos/jnewland/xhtmlize/subscribers', + subscription_url: 'https://api.github.com/repos/jnewland/xhtmlize/subscription', + commits_url: 'https://api.github.com/repos/jnewland/xhtmlize/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnewland/xhtmlize/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnewland/xhtmlize/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnewland/xhtmlize/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnewland/xhtmlize/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnewland/xhtmlize/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnewland/xhtmlize/merges', + archive_url: 'https://api.github.com/repos/jnewland/xhtmlize/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnewland/xhtmlize/downloads', + issues_url: 'https://api.github.com/repos/jnewland/xhtmlize/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnewland/xhtmlize/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnewland/xhtmlize/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnewland/xhtmlize/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnewland/xhtmlize/labels{/name}', + releases_url: 'https://api.github.com/repos/jnewland/xhtmlize/releases{/id}' }, + { id: 130, + name: 'ruby-git', + full_name: 'schacon/ruby-git', + owner: + { login: 'schacon', + id: 70, + avatar_url: 'https://avatars.githubusercontent.com/u/70?v=2', + gravatar_id: '9375a9529679f1b42b567a640d775e7d', + url: 'https://api.github.com/users/schacon', + html_url: 'https://github.com/schacon', + followers_url: 'https://api.github.com/users/schacon/followers', + following_url: 'https://api.github.com/users/schacon/following{/other_user}', + gists_url: 'https://api.github.com/users/schacon/gists{/gist_id}', + starred_url: 'https://api.github.com/users/schacon/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/schacon/subscriptions', + organizations_url: 'https://api.github.com/users/schacon/orgs', + repos_url: 'https://api.github.com/users/schacon/repos', + events_url: 'https://api.github.com/users/schacon/events{/privacy}', + received_events_url: 'https://api.github.com/users/schacon/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/schacon/ruby-git', + description: 'Ruby/Git is a Ruby library that can be used to create, read and manipulate Git repositories by wrapping system calls to the git binary.', + fork: false, + url: 'https://api.github.com/repos/schacon/ruby-git', + forks_url: 'https://api.github.com/repos/schacon/ruby-git/forks', + keys_url: 'https://api.github.com/repos/schacon/ruby-git/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/schacon/ruby-git/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/schacon/ruby-git/teams', + hooks_url: 'https://api.github.com/repos/schacon/ruby-git/hooks', + issue_events_url: 'https://api.github.com/repos/schacon/ruby-git/issues/events{/number}', + events_url: 'https://api.github.com/repos/schacon/ruby-git/events', + assignees_url: 'https://api.github.com/repos/schacon/ruby-git/assignees{/user}', + branches_url: 'https://api.github.com/repos/schacon/ruby-git/branches{/branch}', + tags_url: 'https://api.github.com/repos/schacon/ruby-git/tags', + blobs_url: 'https://api.github.com/repos/schacon/ruby-git/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/schacon/ruby-git/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/schacon/ruby-git/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/schacon/ruby-git/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/schacon/ruby-git/statuses/{sha}', + languages_url: 'https://api.github.com/repos/schacon/ruby-git/languages', + stargazers_url: 'https://api.github.com/repos/schacon/ruby-git/stargazers', + contributors_url: 'https://api.github.com/repos/schacon/ruby-git/contributors', + subscribers_url: 'https://api.github.com/repos/schacon/ruby-git/subscribers', + subscription_url: 'https://api.github.com/repos/schacon/ruby-git/subscription', + commits_url: 'https://api.github.com/repos/schacon/ruby-git/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/schacon/ruby-git/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/schacon/ruby-git/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/schacon/ruby-git/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/schacon/ruby-git/contents/{+path}', + compare_url: 'https://api.github.com/repos/schacon/ruby-git/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/schacon/ruby-git/merges', + archive_url: 'https://api.github.com/repos/schacon/ruby-git/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/schacon/ruby-git/downloads', + issues_url: 'https://api.github.com/repos/schacon/ruby-git/issues{/number}', + pulls_url: 'https://api.github.com/repos/schacon/ruby-git/pulls{/number}', + milestones_url: 'https://api.github.com/repos/schacon/ruby-git/milestones{/number}', + notifications_url: 'https://api.github.com/repos/schacon/ruby-git/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/schacon/ruby-git/labels{/name}', + releases_url: 'https://api.github.com/repos/schacon/ruby-git/releases{/id}' }, + { id: 131, + name: 'bmhsearch', + full_name: 'ezmobius/bmhsearch', + owner: + { login: 'ezmobius', + id: 5, + avatar_url: 'https://avatars.githubusercontent.com/u/5?v=2', + gravatar_id: '6a3a6e3da2d97be8df476187ff151f04', + url: 'https://api.github.com/users/ezmobius', + html_url: 'https://github.com/ezmobius', + followers_url: 'https://api.github.com/users/ezmobius/followers', + following_url: 'https://api.github.com/users/ezmobius/following{/other_user}', + gists_url: 'https://api.github.com/users/ezmobius/gists{/gist_id}', + starred_url: 'https://api.github.com/users/ezmobius/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/ezmobius/subscriptions', + organizations_url: 'https://api.github.com/users/ezmobius/orgs', + repos_url: 'https://api.github.com/users/ezmobius/repos', + events_url: 'https://api.github.com/users/ezmobius/events{/privacy}', + received_events_url: 'https://api.github.com/users/ezmobius/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/ezmobius/bmhsearch', + description: 'Fast string searcher, useful for multi-part post parsing', + fork: false, + url: 'https://api.github.com/repos/ezmobius/bmhsearch', + forks_url: 'https://api.github.com/repos/ezmobius/bmhsearch/forks', + keys_url: 'https://api.github.com/repos/ezmobius/bmhsearch/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/ezmobius/bmhsearch/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/ezmobius/bmhsearch/teams', + hooks_url: 'https://api.github.com/repos/ezmobius/bmhsearch/hooks', + issue_events_url: 'https://api.github.com/repos/ezmobius/bmhsearch/issues/events{/number}', + events_url: 'https://api.github.com/repos/ezmobius/bmhsearch/events', + assignees_url: 'https://api.github.com/repos/ezmobius/bmhsearch/assignees{/user}', + branches_url: 'https://api.github.com/repos/ezmobius/bmhsearch/branches{/branch}', + tags_url: 'https://api.github.com/repos/ezmobius/bmhsearch/tags', + blobs_url: 'https://api.github.com/repos/ezmobius/bmhsearch/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/ezmobius/bmhsearch/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/ezmobius/bmhsearch/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/ezmobius/bmhsearch/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/ezmobius/bmhsearch/statuses/{sha}', + languages_url: 'https://api.github.com/repos/ezmobius/bmhsearch/languages', + stargazers_url: 'https://api.github.com/repos/ezmobius/bmhsearch/stargazers', + contributors_url: 'https://api.github.com/repos/ezmobius/bmhsearch/contributors', + subscribers_url: 'https://api.github.com/repos/ezmobius/bmhsearch/subscribers', + subscription_url: 'https://api.github.com/repos/ezmobius/bmhsearch/subscription', + commits_url: 'https://api.github.com/repos/ezmobius/bmhsearch/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/ezmobius/bmhsearch/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/ezmobius/bmhsearch/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/ezmobius/bmhsearch/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/ezmobius/bmhsearch/contents/{+path}', + compare_url: 'https://api.github.com/repos/ezmobius/bmhsearch/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/ezmobius/bmhsearch/merges', + archive_url: 'https://api.github.com/repos/ezmobius/bmhsearch/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/ezmobius/bmhsearch/downloads', + issues_url: 'https://api.github.com/repos/ezmobius/bmhsearch/issues{/number}', + pulls_url: 'https://api.github.com/repos/ezmobius/bmhsearch/pulls{/number}', + milestones_url: 'https://api.github.com/repos/ezmobius/bmhsearch/milestones{/number}', + notifications_url: 'https://api.github.com/repos/ezmobius/bmhsearch/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/ezmobius/bmhsearch/labels{/name}', + releases_url: 'https://api.github.com/repos/ezmobius/bmhsearch/releases{/id}' }, + { id: 137, + name: 'mofo', + full_name: 'uggedal/mofo', + owner: + { login: 'uggedal', + id: 71, + avatar_url: 'https://avatars.githubusercontent.com/u/71?v=2', + gravatar_id: '0339e3df937c32000f9e2cf1de04298d', + url: 'https://api.github.com/users/uggedal', + html_url: 'https://github.com/uggedal', + followers_url: 'https://api.github.com/users/uggedal/followers', + following_url: 'https://api.github.com/users/uggedal/following{/other_user}', + gists_url: 'https://api.github.com/users/uggedal/gists{/gist_id}', + starred_url: 'https://api.github.com/users/uggedal/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/uggedal/subscriptions', + organizations_url: 'https://api.github.com/users/uggedal/orgs', + repos_url: 'https://api.github.com/users/uggedal/repos', + events_url: 'https://api.github.com/users/uggedal/events{/privacy}', + received_events_url: 'https://api.github.com/users/uggedal/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/uggedal/mofo', + description: 'Mofo is a fast and simple microformat parser, based on a concise DSL and Hpricot.', + fork: true, + url: 'https://api.github.com/repos/uggedal/mofo', + forks_url: 'https://api.github.com/repos/uggedal/mofo/forks', + keys_url: 'https://api.github.com/repos/uggedal/mofo/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/uggedal/mofo/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/uggedal/mofo/teams', + hooks_url: 'https://api.github.com/repos/uggedal/mofo/hooks', + issue_events_url: 'https://api.github.com/repos/uggedal/mofo/issues/events{/number}', + events_url: 'https://api.github.com/repos/uggedal/mofo/events', + assignees_url: 'https://api.github.com/repos/uggedal/mofo/assignees{/user}', + branches_url: 'https://api.github.com/repos/uggedal/mofo/branches{/branch}', + tags_url: 'https://api.github.com/repos/uggedal/mofo/tags', + blobs_url: 'https://api.github.com/repos/uggedal/mofo/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/uggedal/mofo/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/uggedal/mofo/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/uggedal/mofo/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/uggedal/mofo/statuses/{sha}', + languages_url: 'https://api.github.com/repos/uggedal/mofo/languages', + stargazers_url: 'https://api.github.com/repos/uggedal/mofo/stargazers', + contributors_url: 'https://api.github.com/repos/uggedal/mofo/contributors', + subscribers_url: 'https://api.github.com/repos/uggedal/mofo/subscribers', + subscription_url: 'https://api.github.com/repos/uggedal/mofo/subscription', + commits_url: 'https://api.github.com/repos/uggedal/mofo/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/uggedal/mofo/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/uggedal/mofo/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/uggedal/mofo/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/uggedal/mofo/contents/{+path}', + compare_url: 'https://api.github.com/repos/uggedal/mofo/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/uggedal/mofo/merges', + archive_url: 'https://api.github.com/repos/uggedal/mofo/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/uggedal/mofo/downloads', + issues_url: 'https://api.github.com/repos/uggedal/mofo/issues{/number}', + pulls_url: 'https://api.github.com/repos/uggedal/mofo/pulls{/number}', + milestones_url: 'https://api.github.com/repos/uggedal/mofo/milestones{/number}', + notifications_url: 'https://api.github.com/repos/uggedal/mofo/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/uggedal/mofo/labels{/name}', + releases_url: 'https://api.github.com/repos/uggedal/mofo/releases{/id}' }, + { id: 139, + name: 'simply_versioned', + full_name: 'mmower/simply_versioned', + owner: + { login: 'mmower', + id: 74, + avatar_url: 'https://avatars.githubusercontent.com/u/74?v=2', + gravatar_id: '9d89c1c7a998c1f6f6e3fa9ac1753d29', + url: 'https://api.github.com/users/mmower', + html_url: 'https://github.com/mmower', + followers_url: 'https://api.github.com/users/mmower/followers', + following_url: 'https://api.github.com/users/mmower/following{/other_user}', + gists_url: 'https://api.github.com/users/mmower/gists{/gist_id}', + starred_url: 'https://api.github.com/users/mmower/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/mmower/subscriptions', + organizations_url: 'https://api.github.com/users/mmower/orgs', + repos_url: 'https://api.github.com/users/mmower/repos', + events_url: 'https://api.github.com/users/mmower/events{/privacy}', + received_events_url: 'https://api.github.com/users/mmower/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/mmower/simply_versioned', + description: 'A simple, non-invasive, approach to versioning ActiveRecord models', + fork: false, + url: 'https://api.github.com/repos/mmower/simply_versioned', + forks_url: 'https://api.github.com/repos/mmower/simply_versioned/forks', + keys_url: 'https://api.github.com/repos/mmower/simply_versioned/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/mmower/simply_versioned/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/mmower/simply_versioned/teams', + hooks_url: 'https://api.github.com/repos/mmower/simply_versioned/hooks', + issue_events_url: 'https://api.github.com/repos/mmower/simply_versioned/issues/events{/number}', + events_url: 'https://api.github.com/repos/mmower/simply_versioned/events', + assignees_url: 'https://api.github.com/repos/mmower/simply_versioned/assignees{/user}', + branches_url: 'https://api.github.com/repos/mmower/simply_versioned/branches{/branch}', + tags_url: 'https://api.github.com/repos/mmower/simply_versioned/tags', + blobs_url: 'https://api.github.com/repos/mmower/simply_versioned/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/mmower/simply_versioned/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/mmower/simply_versioned/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/mmower/simply_versioned/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/mmower/simply_versioned/statuses/{sha}', + languages_url: 'https://api.github.com/repos/mmower/simply_versioned/languages', + stargazers_url: 'https://api.github.com/repos/mmower/simply_versioned/stargazers', + contributors_url: 'https://api.github.com/repos/mmower/simply_versioned/contributors', + subscribers_url: 'https://api.github.com/repos/mmower/simply_versioned/subscribers', + subscription_url: 'https://api.github.com/repos/mmower/simply_versioned/subscription', + commits_url: 'https://api.github.com/repos/mmower/simply_versioned/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/mmower/simply_versioned/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/mmower/simply_versioned/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/mmower/simply_versioned/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/mmower/simply_versioned/contents/{+path}', + compare_url: 'https://api.github.com/repos/mmower/simply_versioned/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/mmower/simply_versioned/merges', + archive_url: 'https://api.github.com/repos/mmower/simply_versioned/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/mmower/simply_versioned/downloads', + issues_url: 'https://api.github.com/repos/mmower/simply_versioned/issues{/number}', + pulls_url: 'https://api.github.com/repos/mmower/simply_versioned/pulls{/number}', + milestones_url: 'https://api.github.com/repos/mmower/simply_versioned/milestones{/number}', + notifications_url: 'https://api.github.com/repos/mmower/simply_versioned/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/mmower/simply_versioned/labels{/name}', + releases_url: 'https://api.github.com/repos/mmower/simply_versioned/releases{/id}' }, + { id: 140, + name: 'gchart', + full_name: 'abhay/gchart', + owner: + { login: 'abhay', + id: 75, + avatar_url: 'https://avatars.githubusercontent.com/u/75?v=2', + gravatar_id: '012b62cf82e7956ffe8f47086be831de', + url: 'https://api.github.com/users/abhay', + html_url: 'https://github.com/abhay', + followers_url: 'https://api.github.com/users/abhay/followers', + following_url: 'https://api.github.com/users/abhay/following{/other_user}', + gists_url: 'https://api.github.com/users/abhay/gists{/gist_id}', + starred_url: 'https://api.github.com/users/abhay/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/abhay/subscriptions', + organizations_url: 'https://api.github.com/users/abhay/orgs', + repos_url: 'https://api.github.com/users/abhay/repos', + events_url: 'https://api.github.com/users/abhay/events{/privacy}', + received_events_url: 'https://api.github.com/users/abhay/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/abhay/gchart', + description: 'GChart exposes the Google Chart API (http://code.google.com/apis/chart) via a friendly Ruby interface. It can generate the URL for a given chart (for webpage use), or download the generated PNG (for offline use).', + fork: false, + url: 'https://api.github.com/repos/abhay/gchart', + forks_url: 'https://api.github.com/repos/abhay/gchart/forks', + keys_url: 'https://api.github.com/repos/abhay/gchart/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/abhay/gchart/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/abhay/gchart/teams', + hooks_url: 'https://api.github.com/repos/abhay/gchart/hooks', + issue_events_url: 'https://api.github.com/repos/abhay/gchart/issues/events{/number}', + events_url: 'https://api.github.com/repos/abhay/gchart/events', + assignees_url: 'https://api.github.com/repos/abhay/gchart/assignees{/user}', + branches_url: 'https://api.github.com/repos/abhay/gchart/branches{/branch}', + tags_url: 'https://api.github.com/repos/abhay/gchart/tags', + blobs_url: 'https://api.github.com/repos/abhay/gchart/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/abhay/gchart/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/abhay/gchart/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/abhay/gchart/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/abhay/gchart/statuses/{sha}', + languages_url: 'https://api.github.com/repos/abhay/gchart/languages', + stargazers_url: 'https://api.github.com/repos/abhay/gchart/stargazers', + contributors_url: 'https://api.github.com/repos/abhay/gchart/contributors', + subscribers_url: 'https://api.github.com/repos/abhay/gchart/subscribers', + subscription_url: 'https://api.github.com/repos/abhay/gchart/subscription', + commits_url: 'https://api.github.com/repos/abhay/gchart/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/abhay/gchart/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/abhay/gchart/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/abhay/gchart/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/abhay/gchart/contents/{+path}', + compare_url: 'https://api.github.com/repos/abhay/gchart/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/abhay/gchart/merges', + archive_url: 'https://api.github.com/repos/abhay/gchart/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/abhay/gchart/downloads', + issues_url: 'https://api.github.com/repos/abhay/gchart/issues{/number}', + pulls_url: 'https://api.github.com/repos/abhay/gchart/pulls{/number}', + milestones_url: 'https://api.github.com/repos/abhay/gchart/milestones{/number}', + notifications_url: 'https://api.github.com/repos/abhay/gchart/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/abhay/gchart/labels{/name}', + releases_url: 'https://api.github.com/repos/abhay/gchart/releases{/id}' }, + { id: 141, + name: 'schemr', + full_name: 'benburkert/schemr', + owner: + { login: 'benburkert', + id: 77, + avatar_url: 'https://avatars.githubusercontent.com/u/77?v=2', + gravatar_id: '4d1c9dad17af98e55cb65b4efce27c42', + url: 'https://api.github.com/users/benburkert', + html_url: 'https://github.com/benburkert', + followers_url: 'https://api.github.com/users/benburkert/followers', + following_url: 'https://api.github.com/users/benburkert/following{/other_user}', + gists_url: 'https://api.github.com/users/benburkert/gists{/gist_id}', + starred_url: 'https://api.github.com/users/benburkert/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/benburkert/subscriptions', + organizations_url: 'https://api.github.com/users/benburkert/orgs', + repos_url: 'https://api.github.com/users/benburkert/repos', + events_url: 'https://api.github.com/users/benburkert/events{/privacy}', + received_events_url: 'https://api.github.com/users/benburkert/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/benburkert/schemr', + description: 'A DSL for creating schema documents in ruby', + fork: false, + url: 'https://api.github.com/repos/benburkert/schemr', + forks_url: 'https://api.github.com/repos/benburkert/schemr/forks', + keys_url: 'https://api.github.com/repos/benburkert/schemr/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/benburkert/schemr/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/benburkert/schemr/teams', + hooks_url: 'https://api.github.com/repos/benburkert/schemr/hooks', + issue_events_url: 'https://api.github.com/repos/benburkert/schemr/issues/events{/number}', + events_url: 'https://api.github.com/repos/benburkert/schemr/events', + assignees_url: 'https://api.github.com/repos/benburkert/schemr/assignees{/user}', + branches_url: 'https://api.github.com/repos/benburkert/schemr/branches{/branch}', + tags_url: 'https://api.github.com/repos/benburkert/schemr/tags', + blobs_url: 'https://api.github.com/repos/benburkert/schemr/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/benburkert/schemr/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/benburkert/schemr/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/benburkert/schemr/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/benburkert/schemr/statuses/{sha}', + languages_url: 'https://api.github.com/repos/benburkert/schemr/languages', + stargazers_url: 'https://api.github.com/repos/benburkert/schemr/stargazers', + contributors_url: 'https://api.github.com/repos/benburkert/schemr/contributors', + subscribers_url: 'https://api.github.com/repos/benburkert/schemr/subscribers', + subscription_url: 'https://api.github.com/repos/benburkert/schemr/subscription', + commits_url: 'https://api.github.com/repos/benburkert/schemr/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/benburkert/schemr/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/benburkert/schemr/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/benburkert/schemr/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/benburkert/schemr/contents/{+path}', + compare_url: 'https://api.github.com/repos/benburkert/schemr/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/benburkert/schemr/merges', + archive_url: 'https://api.github.com/repos/benburkert/schemr/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/benburkert/schemr/downloads', + issues_url: 'https://api.github.com/repos/benburkert/schemr/issues{/number}', + pulls_url: 'https://api.github.com/repos/benburkert/schemr/pulls{/number}', + milestones_url: 'https://api.github.com/repos/benburkert/schemr/milestones{/number}', + notifications_url: 'https://api.github.com/repos/benburkert/schemr/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/benburkert/schemr/labels{/name}', + releases_url: 'https://api.github.com/repos/benburkert/schemr/releases{/id}' }, + { id: 142, + name: 'calais', + full_name: 'abhay/calais', + owner: + { login: 'abhay', + id: 75, + avatar_url: 'https://avatars.githubusercontent.com/u/75?v=2', + gravatar_id: '012b62cf82e7956ffe8f47086be831de', + url: 'https://api.github.com/users/abhay', + html_url: 'https://github.com/abhay', + followers_url: 'https://api.github.com/users/abhay/followers', + following_url: 'https://api.github.com/users/abhay/following{/other_user}', + gists_url: 'https://api.github.com/users/abhay/gists{/gist_id}', + starred_url: 'https://api.github.com/users/abhay/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/abhay/subscriptions', + organizations_url: 'https://api.github.com/users/abhay/orgs', + repos_url: 'https://api.github.com/users/abhay/repos', + events_url: 'https://api.github.com/users/abhay/events{/privacy}', + received_events_url: 'https://api.github.com/users/abhay/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/abhay/calais', + description: 'A Ruby interface to the Open Calais API (http://opencalais.com)', + fork: false, + url: 'https://api.github.com/repos/abhay/calais', + forks_url: 'https://api.github.com/repos/abhay/calais/forks', + keys_url: 'https://api.github.com/repos/abhay/calais/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/abhay/calais/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/abhay/calais/teams', + hooks_url: 'https://api.github.com/repos/abhay/calais/hooks', + issue_events_url: 'https://api.github.com/repos/abhay/calais/issues/events{/number}', + events_url: 'https://api.github.com/repos/abhay/calais/events', + assignees_url: 'https://api.github.com/repos/abhay/calais/assignees{/user}', + branches_url: 'https://api.github.com/repos/abhay/calais/branches{/branch}', + tags_url: 'https://api.github.com/repos/abhay/calais/tags', + blobs_url: 'https://api.github.com/repos/abhay/calais/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/abhay/calais/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/abhay/calais/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/abhay/calais/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/abhay/calais/statuses/{sha}', + languages_url: 'https://api.github.com/repos/abhay/calais/languages', + stargazers_url: 'https://api.github.com/repos/abhay/calais/stargazers', + contributors_url: 'https://api.github.com/repos/abhay/calais/contributors', + subscribers_url: 'https://api.github.com/repos/abhay/calais/subscribers', + subscription_url: 'https://api.github.com/repos/abhay/calais/subscription', + commits_url: 'https://api.github.com/repos/abhay/calais/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/abhay/calais/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/abhay/calais/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/abhay/calais/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/abhay/calais/contents/{+path}', + compare_url: 'https://api.github.com/repos/abhay/calais/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/abhay/calais/merges', + archive_url: 'https://api.github.com/repos/abhay/calais/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/abhay/calais/downloads', + issues_url: 'https://api.github.com/repos/abhay/calais/issues{/number}', + pulls_url: 'https://api.github.com/repos/abhay/calais/pulls{/number}', + milestones_url: 'https://api.github.com/repos/abhay/calais/milestones{/number}', + notifications_url: 'https://api.github.com/repos/abhay/calais/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/abhay/calais/labels{/name}', + releases_url: 'https://api.github.com/repos/abhay/calais/releases{/id}' }, + { id: 144, + name: 'chronic', + full_name: 'mojombo/chronic', + owner: + { login: 'mojombo', + id: 1, + avatar_url: 'https://avatars.githubusercontent.com/u/1?v=2', + gravatar_id: '25c7c18223fb42a4c6ae1c8db6f50f9b', + url: 'https://api.github.com/users/mojombo', + html_url: 'https://github.com/mojombo', + followers_url: 'https://api.github.com/users/mojombo/followers', + following_url: 'https://api.github.com/users/mojombo/following{/other_user}', + gists_url: 'https://api.github.com/users/mojombo/gists{/gist_id}', + starred_url: 'https://api.github.com/users/mojombo/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/mojombo/subscriptions', + organizations_url: 'https://api.github.com/users/mojombo/orgs', + repos_url: 'https://api.github.com/users/mojombo/repos', + events_url: 'https://api.github.com/users/mojombo/events{/privacy}', + received_events_url: 'https://api.github.com/users/mojombo/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/mojombo/chronic', + description: 'Chronic is a pure Ruby natural language date parser.', + fork: false, + url: 'https://api.github.com/repos/mojombo/chronic', + forks_url: 'https://api.github.com/repos/mojombo/chronic/forks', + keys_url: 'https://api.github.com/repos/mojombo/chronic/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/mojombo/chronic/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/mojombo/chronic/teams', + hooks_url: 'https://api.github.com/repos/mojombo/chronic/hooks', + issue_events_url: 'https://api.github.com/repos/mojombo/chronic/issues/events{/number}', + events_url: 'https://api.github.com/repos/mojombo/chronic/events', + assignees_url: 'https://api.github.com/repos/mojombo/chronic/assignees{/user}', + branches_url: 'https://api.github.com/repos/mojombo/chronic/branches{/branch}', + tags_url: 'https://api.github.com/repos/mojombo/chronic/tags', + blobs_url: 'https://api.github.com/repos/mojombo/chronic/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/mojombo/chronic/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/mojombo/chronic/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/mojombo/chronic/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/mojombo/chronic/statuses/{sha}', + languages_url: 'https://api.github.com/repos/mojombo/chronic/languages', + stargazers_url: 'https://api.github.com/repos/mojombo/chronic/stargazers', + contributors_url: 'https://api.github.com/repos/mojombo/chronic/contributors', + subscribers_url: 'https://api.github.com/repos/mojombo/chronic/subscribers', + subscription_url: 'https://api.github.com/repos/mojombo/chronic/subscription', + commits_url: 'https://api.github.com/repos/mojombo/chronic/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/mojombo/chronic/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/mojombo/chronic/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/mojombo/chronic/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/mojombo/chronic/contents/{+path}', + compare_url: 'https://api.github.com/repos/mojombo/chronic/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/mojombo/chronic/merges', + archive_url: 'https://api.github.com/repos/mojombo/chronic/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/mojombo/chronic/downloads', + issues_url: 'https://api.github.com/repos/mojombo/chronic/issues{/number}', + pulls_url: 'https://api.github.com/repos/mojombo/chronic/pulls{/number}', + milestones_url: 'https://api.github.com/repos/mojombo/chronic/milestones{/number}', + notifications_url: 'https://api.github.com/repos/mojombo/chronic/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/mojombo/chronic/labels{/name}', + releases_url: 'https://api.github.com/repos/mojombo/chronic/releases{/id}' }, + { id: 165, + name: 'git-wiki', + full_name: 'sr/git-wiki', + owner: + { login: 'sr', + id: 90, + avatar_url: 'https://avatars.githubusercontent.com/u/90?v=2', + gravatar_id: '8e0adf6f8274375b90a180d256d73bad', + url: 'https://api.github.com/users/sr', + html_url: 'https://github.com/sr', + followers_url: 'https://api.github.com/users/sr/followers', + following_url: 'https://api.github.com/users/sr/following{/other_user}', + gists_url: 'https://api.github.com/users/sr/gists{/gist_id}', + starred_url: 'https://api.github.com/users/sr/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/sr/subscriptions', + organizations_url: 'https://api.github.com/users/sr/orgs', + repos_url: 'https://api.github.com/users/sr/repos', + events_url: 'https://api.github.com/users/sr/events{/privacy}', + received_events_url: 'https://api.github.com/users/sr/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/sr/git-wiki', + description: 'A quick & dirty git-powered Sinatra wiki', + fork: false, + url: 'https://api.github.com/repos/sr/git-wiki', + forks_url: 'https://api.github.com/repos/sr/git-wiki/forks', + keys_url: 'https://api.github.com/repos/sr/git-wiki/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/sr/git-wiki/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/sr/git-wiki/teams', + hooks_url: 'https://api.github.com/repos/sr/git-wiki/hooks', + issue_events_url: 'https://api.github.com/repos/sr/git-wiki/issues/events{/number}', + events_url: 'https://api.github.com/repos/sr/git-wiki/events', + assignees_url: 'https://api.github.com/repos/sr/git-wiki/assignees{/user}', + branches_url: 'https://api.github.com/repos/sr/git-wiki/branches{/branch}', + tags_url: 'https://api.github.com/repos/sr/git-wiki/tags', + blobs_url: 'https://api.github.com/repos/sr/git-wiki/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/sr/git-wiki/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/sr/git-wiki/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/sr/git-wiki/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/sr/git-wiki/statuses/{sha}', + languages_url: 'https://api.github.com/repos/sr/git-wiki/languages', + stargazers_url: 'https://api.github.com/repos/sr/git-wiki/stargazers', + contributors_url: 'https://api.github.com/repos/sr/git-wiki/contributors', + subscribers_url: 'https://api.github.com/repos/sr/git-wiki/subscribers', + subscription_url: 'https://api.github.com/repos/sr/git-wiki/subscription', + commits_url: 'https://api.github.com/repos/sr/git-wiki/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/sr/git-wiki/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/sr/git-wiki/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/sr/git-wiki/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/sr/git-wiki/contents/{+path}', + compare_url: 'https://api.github.com/repos/sr/git-wiki/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/sr/git-wiki/merges', + archive_url: 'https://api.github.com/repos/sr/git-wiki/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/sr/git-wiki/downloads', + issues_url: 'https://api.github.com/repos/sr/git-wiki/issues{/number}', + pulls_url: 'https://api.github.com/repos/sr/git-wiki/pulls{/number}', + milestones_url: 'https://api.github.com/repos/sr/git-wiki/milestones{/number}', + notifications_url: 'https://api.github.com/repos/sr/git-wiki/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/sr/git-wiki/labels{/name}', + releases_url: 'https://api.github.com/repos/sr/git-wiki/releases{/id}' }, + { id: 176, + name: 'ambitious_activeldap', + full_name: 'automatthew/ambitious_activeldap', + owner: + { login: 'automatthew', + id: 105, + avatar_url: 'https://avatars.githubusercontent.com/u/105?v=2', + gravatar_id: '491d5a2b6e9c9346e2d67da31a633457', + url: 'https://api.github.com/users/automatthew', + html_url: 'https://github.com/automatthew', + followers_url: 'https://api.github.com/users/automatthew/followers', + following_url: 'https://api.github.com/users/automatthew/following{/other_user}', + gists_url: 'https://api.github.com/users/automatthew/gists{/gist_id}', + starred_url: 'https://api.github.com/users/automatthew/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/automatthew/subscriptions', + organizations_url: 'https://api.github.com/users/automatthew/orgs', + repos_url: 'https://api.github.com/users/automatthew/repos', + events_url: 'https://api.github.com/users/automatthew/events{/privacy}', + received_events_url: 'https://api.github.com/users/automatthew/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/automatthew/ambitious_activeldap', + description: 'Ambition adapter for ActiveLdap', + fork: false, + url: 'https://api.github.com/repos/automatthew/ambitious_activeldap', + forks_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/forks', + keys_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/teams', + hooks_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/hooks', + issue_events_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/issues/events{/number}', + events_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/events', + assignees_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/assignees{/user}', + branches_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/branches{/branch}', + tags_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/tags', + blobs_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/statuses/{sha}', + languages_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/languages', + stargazers_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/stargazers', + contributors_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/contributors', + subscribers_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/subscribers', + subscription_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/subscription', + commits_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/contents/{+path}', + compare_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/merges', + archive_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/downloads', + issues_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/issues{/number}', + pulls_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/pulls{/number}', + milestones_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/milestones{/number}', + notifications_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/labels{/name}', + releases_url: 'https://api.github.com/repos/automatthew/ambitious_activeldap/releases{/id}' }, + { id: 177, + name: 'signal-wiki', + full_name: 'queso/signal-wiki', + owner: + { login: 'queso', + id: 106, + avatar_url: 'https://avatars.githubusercontent.com/u/106?v=2', + gravatar_id: '089ddf30c09022b92363dd0d8ce2bdfd', + url: 'https://api.github.com/users/queso', + html_url: 'https://github.com/queso', + followers_url: 'https://api.github.com/users/queso/followers', + following_url: 'https://api.github.com/users/queso/following{/other_user}', + gists_url: 'https://api.github.com/users/queso/gists{/gist_id}', + starred_url: 'https://api.github.com/users/queso/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/queso/subscriptions', + organizations_url: 'https://api.github.com/users/queso/orgs', + repos_url: 'https://api.github.com/users/queso/repos', + events_url: 'https://api.github.com/users/queso/events{/privacy}', + received_events_url: 'https://api.github.com/users/queso/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/queso/signal-wiki', + description: 'The easy to use rails wiki', + fork: false, + url: 'https://api.github.com/repos/queso/signal-wiki', + forks_url: 'https://api.github.com/repos/queso/signal-wiki/forks', + keys_url: 'https://api.github.com/repos/queso/signal-wiki/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/queso/signal-wiki/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/queso/signal-wiki/teams', + hooks_url: 'https://api.github.com/repos/queso/signal-wiki/hooks', + issue_events_url: 'https://api.github.com/repos/queso/signal-wiki/issues/events{/number}', + events_url: 'https://api.github.com/repos/queso/signal-wiki/events', + assignees_url: 'https://api.github.com/repos/queso/signal-wiki/assignees{/user}', + branches_url: 'https://api.github.com/repos/queso/signal-wiki/branches{/branch}', + tags_url: 'https://api.github.com/repos/queso/signal-wiki/tags', + blobs_url: 'https://api.github.com/repos/queso/signal-wiki/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/queso/signal-wiki/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/queso/signal-wiki/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/queso/signal-wiki/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/queso/signal-wiki/statuses/{sha}', + languages_url: 'https://api.github.com/repos/queso/signal-wiki/languages', + stargazers_url: 'https://api.github.com/repos/queso/signal-wiki/stargazers', + contributors_url: 'https://api.github.com/repos/queso/signal-wiki/contributors', + subscribers_url: 'https://api.github.com/repos/queso/signal-wiki/subscribers', + subscription_url: 'https://api.github.com/repos/queso/signal-wiki/subscription', + commits_url: 'https://api.github.com/repos/queso/signal-wiki/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/queso/signal-wiki/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/queso/signal-wiki/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/queso/signal-wiki/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/queso/signal-wiki/contents/{+path}', + compare_url: 'https://api.github.com/repos/queso/signal-wiki/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/queso/signal-wiki/merges', + archive_url: 'https://api.github.com/repos/queso/signal-wiki/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/queso/signal-wiki/downloads', + issues_url: 'https://api.github.com/repos/queso/signal-wiki/issues{/number}', + pulls_url: 'https://api.github.com/repos/queso/signal-wiki/pulls{/number}', + milestones_url: 'https://api.github.com/repos/queso/signal-wiki/milestones{/number}', + notifications_url: 'https://api.github.com/repos/queso/signal-wiki/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/queso/signal-wiki/labels{/name}', + releases_url: 'https://api.github.com/repos/queso/signal-wiki/releases{/id}' }, + { id: 179, + name: 'ruby-on-rails-tmbundle', + full_name: 'drnic/ruby-on-rails-tmbundle', + owner: + { login: 'drnic', + id: 108, + avatar_url: 'https://avatars.githubusercontent.com/u/108?v=2', + gravatar_id: 'cb2b768a5e546b24052ea03334e43676', + url: 'https://api.github.com/users/drnic', + html_url: 'https://github.com/drnic', + followers_url: 'https://api.github.com/users/drnic/followers', + following_url: 'https://api.github.com/users/drnic/following{/other_user}', + gists_url: 'https://api.github.com/users/drnic/gists{/gist_id}', + starred_url: 'https://api.github.com/users/drnic/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/drnic/subscriptions', + organizations_url: 'https://api.github.com/users/drnic/orgs', + repos_url: 'https://api.github.com/users/drnic/repos', + events_url: 'https://api.github.com/users/drnic/events{/privacy}', + received_events_url: 'https://api.github.com/users/drnic/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/drnic/ruby-on-rails-tmbundle', + description: 'Ruby on Rails TextMate bundle [Learn it with PeepCode - http://peepcode.com/products/textmate-for-rails-2]', + fork: false, + url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle', + forks_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/forks', + keys_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/teams', + hooks_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/hooks', + issue_events_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/events{/number}', + events_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/events', + assignees_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/assignees{/user}', + branches_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/branches{/branch}', + tags_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/tags', + blobs_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/statuses/{sha}', + languages_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/languages', + stargazers_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/stargazers', + contributors_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contributors', + subscribers_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscribers', + subscription_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscription', + commits_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contents/{+path}', + compare_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/merges', + archive_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/downloads', + issues_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues{/number}', + pulls_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/pulls{/number}', + milestones_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/milestones{/number}', + notifications_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/labels{/name}', + releases_url: 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/releases{/id}' }, + { id: 185, + name: 'low-pro-for-jquery', + full_name: 'danwrong/low-pro-for-jquery', + owner: + { login: 'danwrong', + id: 110, + avatar_url: 'https://avatars.githubusercontent.com/u/110?v=2', + gravatar_id: '0727907ae68db2e8ebc1ea1b01f00d69', + url: 'https://api.github.com/users/danwrong', + html_url: 'https://github.com/danwrong', + followers_url: 'https://api.github.com/users/danwrong/followers', + following_url: 'https://api.github.com/users/danwrong/following{/other_user}', + gists_url: 'https://api.github.com/users/danwrong/gists{/gist_id}', + starred_url: 'https://api.github.com/users/danwrong/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/danwrong/subscriptions', + organizations_url: 'https://api.github.com/users/danwrong/orgs', + repos_url: 'https://api.github.com/users/danwrong/repos', + events_url: 'https://api.github.com/users/danwrong/events{/privacy}', + received_events_url: 'https://api.github.com/users/danwrong/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/danwrong/low-pro-for-jquery', + description: 'A jQuery plugin version of the Low Pro behavior framework.', + fork: false, + url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery', + forks_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/forks', + keys_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/teams', + hooks_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/hooks', + issue_events_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/events{/number}', + events_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/events', + assignees_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/assignees{/user}', + branches_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/branches{/branch}', + tags_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/tags', + blobs_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/statuses/{sha}', + languages_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/languages', + stargazers_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/stargazers', + contributors_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/contributors', + subscribers_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/subscribers', + subscription_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/subscription', + commits_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/contents/{+path}', + compare_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/merges', + archive_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/downloads', + issues_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues{/number}', + pulls_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/pulls{/number}', + milestones_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/milestones{/number}', + notifications_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/labels{/name}', + releases_url: 'https://api.github.com/repos/danwrong/low-pro-for-jquery/releases{/id}' }, + { id: 186, + name: 'merb-core', + full_name: 'wayneeseguin/merb-core', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/merb-core', + description: 'Merb Core: All you need. None you don\'t.', + fork: true, + url: 'https://api.github.com/repos/wayneeseguin/merb-core', + forks_url: 'https://api.github.com/repos/wayneeseguin/merb-core/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/merb-core/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/merb-core/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/merb-core/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/merb-core/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/merb-core/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/merb-core/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/merb-core/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/merb-core/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/merb-core/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/merb-core/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/merb-core/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/merb-core/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/merb-core/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/merb-core/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/merb-core/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/merb-core/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/merb-core/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/merb-core/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/merb-core/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/merb-core/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/merb-core/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/merb-core/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/merb-core/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/merb-core/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/merb-core/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/merb-core/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/merb-core/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/merb-core/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/merb-core/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/merb-core/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/merb-core/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/merb-core/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/merb-core/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/merb-core/releases{/id}' }, + { id: 190, + name: 'dst', + full_name: 'sr/dst', + owner: + { login: 'sr', + id: 90, + avatar_url: 'https://avatars.githubusercontent.com/u/90?v=2', + gravatar_id: '8e0adf6f8274375b90a180d256d73bad', + url: 'https://api.github.com/users/sr', + html_url: 'https://github.com/sr', + followers_url: 'https://api.github.com/users/sr/followers', + following_url: 'https://api.github.com/users/sr/following{/other_user}', + gists_url: 'https://api.github.com/users/sr/gists{/gist_id}', + starred_url: 'https://api.github.com/users/sr/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/sr/subscriptions', + organizations_url: 'https://api.github.com/users/sr/orgs', + repos_url: 'https://api.github.com/users/sr/repos', + events_url: 'https://api.github.com/users/sr/events{/privacy}', + received_events_url: 'https://api.github.com/users/sr/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/sr/dst', + description: 'todo-list manager I wrote back in 2008 with the help of Gregory Brown in order to learn Ruby and TDD', + fork: false, + url: 'https://api.github.com/repos/sr/dst', + forks_url: 'https://api.github.com/repos/sr/dst/forks', + keys_url: 'https://api.github.com/repos/sr/dst/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/sr/dst/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/sr/dst/teams', + hooks_url: 'https://api.github.com/repos/sr/dst/hooks', + issue_events_url: 'https://api.github.com/repos/sr/dst/issues/events{/number}', + events_url: 'https://api.github.com/repos/sr/dst/events', + assignees_url: 'https://api.github.com/repos/sr/dst/assignees{/user}', + branches_url: 'https://api.github.com/repos/sr/dst/branches{/branch}', + tags_url: 'https://api.github.com/repos/sr/dst/tags', + blobs_url: 'https://api.github.com/repos/sr/dst/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/sr/dst/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/sr/dst/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/sr/dst/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/sr/dst/statuses/{sha}', + languages_url: 'https://api.github.com/repos/sr/dst/languages', + stargazers_url: 'https://api.github.com/repos/sr/dst/stargazers', + contributors_url: 'https://api.github.com/repos/sr/dst/contributors', + subscribers_url: 'https://api.github.com/repos/sr/dst/subscribers', + subscription_url: 'https://api.github.com/repos/sr/dst/subscription', + commits_url: 'https://api.github.com/repos/sr/dst/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/sr/dst/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/sr/dst/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/sr/dst/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/sr/dst/contents/{+path}', + compare_url: 'https://api.github.com/repos/sr/dst/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/sr/dst/merges', + archive_url: 'https://api.github.com/repos/sr/dst/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/sr/dst/downloads', + issues_url: 'https://api.github.com/repos/sr/dst/issues{/number}', + pulls_url: 'https://api.github.com/repos/sr/dst/pulls{/number}', + milestones_url: 'https://api.github.com/repos/sr/dst/milestones{/number}', + notifications_url: 'https://api.github.com/repos/sr/dst/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/sr/dst/labels{/name}', + releases_url: 'https://api.github.com/repos/sr/dst/releases{/id}' }, + { id: 191, + name: 'yaws', + full_name: 'mojombo/yaws', + owner: + { login: 'mojombo', + id: 1, + avatar_url: 'https://avatars.githubusercontent.com/u/1?v=2', + gravatar_id: '25c7c18223fb42a4c6ae1c8db6f50f9b', + url: 'https://api.github.com/users/mojombo', + html_url: 'https://github.com/mojombo', + followers_url: 'https://api.github.com/users/mojombo/followers', + following_url: 'https://api.github.com/users/mojombo/following{/other_user}', + gists_url: 'https://api.github.com/users/mojombo/gists{/gist_id}', + starred_url: 'https://api.github.com/users/mojombo/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/mojombo/subscriptions', + organizations_url: 'https://api.github.com/users/mojombo/orgs', + repos_url: 'https://api.github.com/users/mojombo/repos', + events_url: 'https://api.github.com/users/mojombo/events{/privacy}', + received_events_url: 'https://api.github.com/users/mojombo/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/mojombo/yaws', + description: 'YAWS is an erlang web server', + fork: false, + url: 'https://api.github.com/repos/mojombo/yaws', + forks_url: 'https://api.github.com/repos/mojombo/yaws/forks', + keys_url: 'https://api.github.com/repos/mojombo/yaws/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/mojombo/yaws/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/mojombo/yaws/teams', + hooks_url: 'https://api.github.com/repos/mojombo/yaws/hooks', + issue_events_url: 'https://api.github.com/repos/mojombo/yaws/issues/events{/number}', + events_url: 'https://api.github.com/repos/mojombo/yaws/events', + assignees_url: 'https://api.github.com/repos/mojombo/yaws/assignees{/user}', + branches_url: 'https://api.github.com/repos/mojombo/yaws/branches{/branch}', + tags_url: 'https://api.github.com/repos/mojombo/yaws/tags', + blobs_url: 'https://api.github.com/repos/mojombo/yaws/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/mojombo/yaws/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/mojombo/yaws/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/mojombo/yaws/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/mojombo/yaws/statuses/{sha}', + languages_url: 'https://api.github.com/repos/mojombo/yaws/languages', + stargazers_url: 'https://api.github.com/repos/mojombo/yaws/stargazers', + contributors_url: 'https://api.github.com/repos/mojombo/yaws/contributors', + subscribers_url: 'https://api.github.com/repos/mojombo/yaws/subscribers', + subscription_url: 'https://api.github.com/repos/mojombo/yaws/subscription', + commits_url: 'https://api.github.com/repos/mojombo/yaws/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/mojombo/yaws/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/mojombo/yaws/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/mojombo/yaws/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/mojombo/yaws/contents/{+path}', + compare_url: 'https://api.github.com/repos/mojombo/yaws/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/mojombo/yaws/merges', + archive_url: 'https://api.github.com/repos/mojombo/yaws/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/mojombo/yaws/downloads', + issues_url: 'https://api.github.com/repos/mojombo/yaws/issues{/number}', + pulls_url: 'https://api.github.com/repos/mojombo/yaws/pulls{/number}', + milestones_url: 'https://api.github.com/repos/mojombo/yaws/milestones{/number}', + notifications_url: 'https://api.github.com/repos/mojombo/yaws/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/mojombo/yaws/labels{/name}', + releases_url: 'https://api.github.com/repos/mojombo/yaws/releases{/id}' }, + { id: 192, + name: 'yaws', + full_name: 'KirinDave/yaws', + owner: + { login: 'KirinDave', + id: 36, + avatar_url: 'https://avatars.githubusercontent.com/u/36?v=2', + gravatar_id: 'd4fabd6c08ac228a3ff846d9d0d1580e', + url: 'https://api.github.com/users/KirinDave', + html_url: 'https://github.com/KirinDave', + followers_url: 'https://api.github.com/users/KirinDave/followers', + following_url: 'https://api.github.com/users/KirinDave/following{/other_user}', + gists_url: 'https://api.github.com/users/KirinDave/gists{/gist_id}', + starred_url: 'https://api.github.com/users/KirinDave/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/KirinDave/subscriptions', + organizations_url: 'https://api.github.com/users/KirinDave/orgs', + repos_url: 'https://api.github.com/users/KirinDave/repos', + events_url: 'https://api.github.com/users/KirinDave/events{/privacy}', + received_events_url: 'https://api.github.com/users/KirinDave/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/KirinDave/yaws', + description: 'YAWS is an erlang web server', + fork: true, + url: 'https://api.github.com/repos/KirinDave/yaws', + forks_url: 'https://api.github.com/repos/KirinDave/yaws/forks', + keys_url: 'https://api.github.com/repos/KirinDave/yaws/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/KirinDave/yaws/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/KirinDave/yaws/teams', + hooks_url: 'https://api.github.com/repos/KirinDave/yaws/hooks', + issue_events_url: 'https://api.github.com/repos/KirinDave/yaws/issues/events{/number}', + events_url: 'https://api.github.com/repos/KirinDave/yaws/events', + assignees_url: 'https://api.github.com/repos/KirinDave/yaws/assignees{/user}', + branches_url: 'https://api.github.com/repos/KirinDave/yaws/branches{/branch}', + tags_url: 'https://api.github.com/repos/KirinDave/yaws/tags', + blobs_url: 'https://api.github.com/repos/KirinDave/yaws/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/KirinDave/yaws/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/KirinDave/yaws/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/KirinDave/yaws/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/KirinDave/yaws/statuses/{sha}', + languages_url: 'https://api.github.com/repos/KirinDave/yaws/languages', + stargazers_url: 'https://api.github.com/repos/KirinDave/yaws/stargazers', + contributors_url: 'https://api.github.com/repos/KirinDave/yaws/contributors', + subscribers_url: 'https://api.github.com/repos/KirinDave/yaws/subscribers', + subscription_url: 'https://api.github.com/repos/KirinDave/yaws/subscription', + commits_url: 'https://api.github.com/repos/KirinDave/yaws/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/KirinDave/yaws/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/KirinDave/yaws/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/KirinDave/yaws/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/KirinDave/yaws/contents/{+path}', + compare_url: 'https://api.github.com/repos/KirinDave/yaws/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/KirinDave/yaws/merges', + archive_url: 'https://api.github.com/repos/KirinDave/yaws/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/KirinDave/yaws/downloads', + issues_url: 'https://api.github.com/repos/KirinDave/yaws/issues{/number}', + pulls_url: 'https://api.github.com/repos/KirinDave/yaws/pulls{/number}', + milestones_url: 'https://api.github.com/repos/KirinDave/yaws/milestones{/number}', + notifications_url: 'https://api.github.com/repos/KirinDave/yaws/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/KirinDave/yaws/labels{/name}', + releases_url: 'https://api.github.com/repos/KirinDave/yaws/releases{/id}' }, + { id: 193, + name: 'tasks', + full_name: 'sr/tasks', + owner: + { login: 'sr', + id: 90, + avatar_url: 'https://avatars.githubusercontent.com/u/90?v=2', + gravatar_id: '8e0adf6f8274375b90a180d256d73bad', + url: 'https://api.github.com/users/sr', + html_url: 'https://github.com/sr', + followers_url: 'https://api.github.com/users/sr/followers', + following_url: 'https://api.github.com/users/sr/following{/other_user}', + gists_url: 'https://api.github.com/users/sr/gists{/gist_id}', + starred_url: 'https://api.github.com/users/sr/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/sr/subscriptions', + organizations_url: 'https://api.github.com/users/sr/orgs', + repos_url: 'https://api.github.com/users/sr/repos', + events_url: 'https://api.github.com/users/sr/events{/privacy}', + received_events_url: 'https://api.github.com/users/sr/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/sr/tasks', + description: 'Some more or less useful rake tasks. Includes tasks to work with git-cvs, convert an Atom collection to a blog, post to an AtomPub server and more.', + fork: false, + url: 'https://api.github.com/repos/sr/tasks', + forks_url: 'https://api.github.com/repos/sr/tasks/forks', + keys_url: 'https://api.github.com/repos/sr/tasks/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/sr/tasks/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/sr/tasks/teams', + hooks_url: 'https://api.github.com/repos/sr/tasks/hooks', + issue_events_url: 'https://api.github.com/repos/sr/tasks/issues/events{/number}', + events_url: 'https://api.github.com/repos/sr/tasks/events', + assignees_url: 'https://api.github.com/repos/sr/tasks/assignees{/user}', + branches_url: 'https://api.github.com/repos/sr/tasks/branches{/branch}', + tags_url: 'https://api.github.com/repos/sr/tasks/tags', + blobs_url: 'https://api.github.com/repos/sr/tasks/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/sr/tasks/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/sr/tasks/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/sr/tasks/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/sr/tasks/statuses/{sha}', + languages_url: 'https://api.github.com/repos/sr/tasks/languages', + stargazers_url: 'https://api.github.com/repos/sr/tasks/stargazers', + contributors_url: 'https://api.github.com/repos/sr/tasks/contributors', + subscribers_url: 'https://api.github.com/repos/sr/tasks/subscribers', + subscription_url: 'https://api.github.com/repos/sr/tasks/subscription', + commits_url: 'https://api.github.com/repos/sr/tasks/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/sr/tasks/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/sr/tasks/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/sr/tasks/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/sr/tasks/contents/{+path}', + compare_url: 'https://api.github.com/repos/sr/tasks/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/sr/tasks/merges', + archive_url: 'https://api.github.com/repos/sr/tasks/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/sr/tasks/downloads', + issues_url: 'https://api.github.com/repos/sr/tasks/issues{/number}', + pulls_url: 'https://api.github.com/repos/sr/tasks/pulls{/number}', + milestones_url: 'https://api.github.com/repos/sr/tasks/milestones{/number}', + notifications_url: 'https://api.github.com/repos/sr/tasks/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/sr/tasks/labels{/name}', + releases_url: 'https://api.github.com/repos/sr/tasks/releases{/id}' }, + { id: 195, + name: 'ruby-on-rails-tmbundle', + full_name: 'mattetti/ruby-on-rails-tmbundle', + owner: + { login: 'mattetti', + id: 113, + avatar_url: 'https://avatars.githubusercontent.com/u/113?v=2', + gravatar_id: 'c69521d6e22fc0bbd69337ec8b1698df', + url: 'https://api.github.com/users/mattetti', + html_url: 'https://github.com/mattetti', + followers_url: 'https://api.github.com/users/mattetti/followers', + following_url: 'https://api.github.com/users/mattetti/following{/other_user}', + gists_url: 'https://api.github.com/users/mattetti/gists{/gist_id}', + starred_url: 'https://api.github.com/users/mattetti/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/mattetti/subscriptions', + organizations_url: 'https://api.github.com/users/mattetti/orgs', + repos_url: 'https://api.github.com/users/mattetti/repos', + events_url: 'https://api.github.com/users/mattetti/events{/privacy}', + received_events_url: 'https://api.github.com/users/mattetti/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/mattetti/ruby-on-rails-tmbundle', + description: 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]', + fork: true, + url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle', + forks_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/forks', + keys_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/teams', + hooks_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/hooks', + issue_events_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/events{/number}', + events_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/events', + assignees_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/assignees{/user}', + branches_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/branches{/branch}', + tags_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/tags', + blobs_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/statuses/{sha}', + languages_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/languages', + stargazers_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/stargazers', + contributors_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contributors', + subscribers_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscribers', + subscription_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscription', + commits_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contents/{+path}', + compare_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/merges', + archive_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/downloads', + issues_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues{/number}', + pulls_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/pulls{/number}', + milestones_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/milestones{/number}', + notifications_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/labels{/name}', + releases_url: 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/releases{/id}' }, + { id: 196, + name: 'ruby-on-rails-tmbundle', + full_name: 'lawrencepit/ruby-on-rails-tmbundle', + owner: + { login: 'lawrencepit', + id: 115, + avatar_url: 'https://avatars.githubusercontent.com/u/115?v=2', + gravatar_id: 'a31c2c26350e9e2b07fbd99fbd5ff520', + url: 'https://api.github.com/users/lawrencepit', + html_url: 'https://github.com/lawrencepit', + followers_url: 'https://api.github.com/users/lawrencepit/followers', + following_url: 'https://api.github.com/users/lawrencepit/following{/other_user}', + gists_url: 'https://api.github.com/users/lawrencepit/gists{/gist_id}', + starred_url: 'https://api.github.com/users/lawrencepit/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/lawrencepit/subscriptions', + organizations_url: 'https://api.github.com/users/lawrencepit/orgs', + repos_url: 'https://api.github.com/users/lawrencepit/repos', + events_url: 'https://api.github.com/users/lawrencepit/events{/privacy}', + received_events_url: 'https://api.github.com/users/lawrencepit/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/lawrencepit/ruby-on-rails-tmbundle', + description: 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]', + fork: true, + url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle', + forks_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/forks', + keys_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/teams', + hooks_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/hooks', + issue_events_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/events{/number}', + events_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/events', + assignees_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/assignees{/user}', + branches_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/branches{/branch}', + tags_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/tags', + blobs_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/statuses/{sha}', + languages_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/languages', + stargazers_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/stargazers', + contributors_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contributors', + subscribers_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscribers', + subscription_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscription', + commits_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contents/{+path}', + compare_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/merges', + archive_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/downloads', + issues_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues{/number}', + pulls_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/pulls{/number}', + milestones_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/milestones{/number}', + notifications_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/labels{/name}', + releases_url: 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/releases{/id}' }, + { id: 199, + name: 'amazon-ec2', + full_name: 'grempe/amazon-ec2', + owner: + { login: 'grempe', + id: 117, + avatar_url: 'https://avatars.githubusercontent.com/u/117?v=2', + gravatar_id: '126e4e797131e8bf3adc528c6a4d78ec', + url: 'https://api.github.com/users/grempe', + html_url: 'https://github.com/grempe', + followers_url: 'https://api.github.com/users/grempe/followers', + following_url: 'https://api.github.com/users/grempe/following{/other_user}', + gists_url: 'https://api.github.com/users/grempe/gists{/gist_id}', + starred_url: 'https://api.github.com/users/grempe/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/grempe/subscriptions', + organizations_url: 'https://api.github.com/users/grempe/orgs', + repos_url: 'https://api.github.com/users/grempe/repos', + events_url: 'https://api.github.com/users/grempe/events{/privacy}', + received_events_url: 'https://api.github.com/users/grempe/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/grempe/amazon-ec2', + description: 'A Ruby Gem that gives you full access to several of the Amazon Web Services API from your Ruby/Ruby on Rails apps', + fork: false, + url: 'https://api.github.com/repos/grempe/amazon-ec2', + forks_url: 'https://api.github.com/repos/grempe/amazon-ec2/forks', + keys_url: 'https://api.github.com/repos/grempe/amazon-ec2/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/grempe/amazon-ec2/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/grempe/amazon-ec2/teams', + hooks_url: 'https://api.github.com/repos/grempe/amazon-ec2/hooks', + issue_events_url: 'https://api.github.com/repos/grempe/amazon-ec2/issues/events{/number}', + events_url: 'https://api.github.com/repos/grempe/amazon-ec2/events', + assignees_url: 'https://api.github.com/repos/grempe/amazon-ec2/assignees{/user}', + branches_url: 'https://api.github.com/repos/grempe/amazon-ec2/branches{/branch}', + tags_url: 'https://api.github.com/repos/grempe/amazon-ec2/tags', + blobs_url: 'https://api.github.com/repos/grempe/amazon-ec2/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/grempe/amazon-ec2/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/grempe/amazon-ec2/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/grempe/amazon-ec2/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/grempe/amazon-ec2/statuses/{sha}', + languages_url: 'https://api.github.com/repos/grempe/amazon-ec2/languages', + stargazers_url: 'https://api.github.com/repos/grempe/amazon-ec2/stargazers', + contributors_url: 'https://api.github.com/repos/grempe/amazon-ec2/contributors', + subscribers_url: 'https://api.github.com/repos/grempe/amazon-ec2/subscribers', + subscription_url: 'https://api.github.com/repos/grempe/amazon-ec2/subscription', + commits_url: 'https://api.github.com/repos/grempe/amazon-ec2/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/grempe/amazon-ec2/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/grempe/amazon-ec2/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/grempe/amazon-ec2/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/grempe/amazon-ec2/contents/{+path}', + compare_url: 'https://api.github.com/repos/grempe/amazon-ec2/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/grempe/amazon-ec2/merges', + archive_url: 'https://api.github.com/repos/grempe/amazon-ec2/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/grempe/amazon-ec2/downloads', + issues_url: 'https://api.github.com/repos/grempe/amazon-ec2/issues{/number}', + pulls_url: 'https://api.github.com/repos/grempe/amazon-ec2/pulls{/number}', + milestones_url: 'https://api.github.com/repos/grempe/amazon-ec2/milestones{/number}', + notifications_url: 'https://api.github.com/repos/grempe/amazon-ec2/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/grempe/amazon-ec2/labels{/name}', + releases_url: 'https://api.github.com/repos/grempe/amazon-ec2/releases{/id}' }, + { id: 203, + name: 'merblogger', + full_name: 'wayneeseguin/merblogger', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/merblogger', + description: 'A Merb Blogging & Publishing Platform using Merb, DataMapper, haml and jQuery.', + fork: false, + url: 'https://api.github.com/repos/wayneeseguin/merblogger', + forks_url: 'https://api.github.com/repos/wayneeseguin/merblogger/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/merblogger/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/merblogger/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/merblogger/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/merblogger/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/merblogger/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/merblogger/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/merblogger/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/merblogger/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/merblogger/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/merblogger/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/merblogger/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/merblogger/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/merblogger/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/merblogger/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/merblogger/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/merblogger/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/merblogger/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/merblogger/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/merblogger/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/merblogger/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/merblogger/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/merblogger/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/merblogger/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/merblogger/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/merblogger/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/merblogger/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/merblogger/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/merblogger/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/merblogger/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/merblogger/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/merblogger/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/merblogger/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/merblogger/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/merblogger/releases{/id}' }, + { id: 204, + name: 'merbtastic', + full_name: 'wayneeseguin/merbtastic', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/merbtastic', + description: 'Merb + Webgen CMS system that has dynamic routing, Nginx config and static site generation with haml/sass/erb/... support.', + fork: false, + url: 'https://api.github.com/repos/wayneeseguin/merbtastic', + forks_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/merbtastic/releases{/id}' }, + { id: 205, + name: 'alogr', + full_name: 'wayneeseguin/alogr', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/alogr', + description: 'AlogR is a threadsafe non-blocking asynchronous configurable logger for Ruby.', + fork: false, + url: 'https://api.github.com/repos/wayneeseguin/alogr', + forks_url: 'https://api.github.com/repos/wayneeseguin/alogr/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/alogr/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/alogr/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/alogr/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/alogr/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/alogr/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/alogr/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/alogr/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/alogr/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/alogr/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/alogr/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/alogr/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/alogr/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/alogr/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/alogr/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/alogr/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/alogr/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/alogr/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/alogr/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/alogr/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/alogr/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/alogr/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/alogr/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/alogr/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/alogr/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/alogr/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/alogr/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/alogr/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/alogr/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/alogr/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/alogr/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/alogr/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/alogr/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/alogr/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/alogr/releases{/id}' }, + { id: 206, + name: 'autozest', + full_name: 'wayneeseguin/autozest', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/autozest', + description: 'AutoZest is an autotest addon that: * automated growl installation * generation of .autotest with growl & autozest config * generation of .autozest.yml config file * autozest.sqlite3 database file for pulling random messages based on severity', + fork: false, + url: 'https://api.github.com/repos/wayneeseguin/autozest', + forks_url: 'https://api.github.com/repos/wayneeseguin/autozest/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/autozest/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/autozest/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/autozest/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/autozest/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/autozest/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/autozest/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/autozest/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/autozest/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/autozest/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/autozest/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/autozest/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/autozest/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/autozest/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/autozest/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/autozest/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/autozest/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/autozest/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/autozest/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/autozest/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/autozest/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/autozest/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/autozest/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/autozest/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/autozest/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/autozest/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/autozest/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/autozest/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/autozest/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/autozest/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/autozest/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/autozest/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/autozest/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/autozest/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/autozest/releases{/id}' }, + { id: 207, + name: 'rnginx', + full_name: 'wayneeseguin/rnginx', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/rnginx', + description: 'Command line utility and library for working with Nginx configuration scripts.', + fork: false, + url: 'https://api.github.com/repos/wayneeseguin/rnginx', + forks_url: 'https://api.github.com/repos/wayneeseguin/rnginx/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/rnginx/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/rnginx/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/rnginx/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/rnginx/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/rnginx/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/rnginx/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/rnginx/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/rnginx/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/rnginx/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/rnginx/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/rnginx/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/rnginx/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/rnginx/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/rnginx/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/rnginx/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/rnginx/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/rnginx/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/rnginx/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/rnginx/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/rnginx/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/rnginx/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/rnginx/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/rnginx/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/rnginx/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/rnginx/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/rnginx/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/rnginx/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/rnginx/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/rnginx/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/rnginx/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/rnginx/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/rnginx/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/rnginx/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/rnginx/releases{/id}' }, + { id: 208, + name: 'sequel', + full_name: 'wayneeseguin/sequel', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/sequel', + description: 'Sequel ORM', + fork: false, + url: 'https://api.github.com/repos/wayneeseguin/sequel', + forks_url: 'https://api.github.com/repos/wayneeseguin/sequel/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/sequel/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/sequel/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/sequel/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/sequel/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/sequel/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/sequel/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/sequel/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/sequel/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/sequel/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/sequel/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/sequel/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/sequel/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/sequel/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/sequel/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/sequel/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/sequel/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/sequel/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/sequel/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/sequel/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/sequel/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/sequel/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/sequel/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/sequel/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/sequel/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/sequel/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/sequel/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/sequel/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/sequel/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/sequel/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/sequel/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/sequel/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/sequel/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/sequel/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/sequel/releases{/id}' }, + { id: 211, + name: 'simply_versioned', + full_name: 'bmizerany/simply_versioned', + owner: + { login: 'bmizerany', + id: 46, + avatar_url: 'https://avatars.githubusercontent.com/u/46?v=2', + gravatar_id: '1a250566b475961b9b36abf359950c76', + url: 'https://api.github.com/users/bmizerany', + html_url: 'https://github.com/bmizerany', + followers_url: 'https://api.github.com/users/bmizerany/followers', + following_url: 'https://api.github.com/users/bmizerany/following{/other_user}', + gists_url: 'https://api.github.com/users/bmizerany/gists{/gist_id}', + starred_url: 'https://api.github.com/users/bmizerany/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/bmizerany/subscriptions', + organizations_url: 'https://api.github.com/users/bmizerany/orgs', + repos_url: 'https://api.github.com/users/bmizerany/repos', + events_url: 'https://api.github.com/users/bmizerany/events{/privacy}', + received_events_url: 'https://api.github.com/users/bmizerany/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/bmizerany/simply_versioned', + description: 'A simple, non-invasive, approach to versioning ActiveRecord models', + fork: true, + url: 'https://api.github.com/repos/bmizerany/simply_versioned', + forks_url: 'https://api.github.com/repos/bmizerany/simply_versioned/forks', + keys_url: 'https://api.github.com/repos/bmizerany/simply_versioned/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/bmizerany/simply_versioned/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/bmizerany/simply_versioned/teams', + hooks_url: 'https://api.github.com/repos/bmizerany/simply_versioned/hooks', + issue_events_url: 'https://api.github.com/repos/bmizerany/simply_versioned/issues/events{/number}', + events_url: 'https://api.github.com/repos/bmizerany/simply_versioned/events', + assignees_url: 'https://api.github.com/repos/bmizerany/simply_versioned/assignees{/user}', + branches_url: 'https://api.github.com/repos/bmizerany/simply_versioned/branches{/branch}', + tags_url: 'https://api.github.com/repos/bmizerany/simply_versioned/tags', + blobs_url: 'https://api.github.com/repos/bmizerany/simply_versioned/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/bmizerany/simply_versioned/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/bmizerany/simply_versioned/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/bmizerany/simply_versioned/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/bmizerany/simply_versioned/statuses/{sha}', + languages_url: 'https://api.github.com/repos/bmizerany/simply_versioned/languages', + stargazers_url: 'https://api.github.com/repos/bmizerany/simply_versioned/stargazers', + contributors_url: 'https://api.github.com/repos/bmizerany/simply_versioned/contributors', + subscribers_url: 'https://api.github.com/repos/bmizerany/simply_versioned/subscribers', + subscription_url: 'https://api.github.com/repos/bmizerany/simply_versioned/subscription', + commits_url: 'https://api.github.com/repos/bmizerany/simply_versioned/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/bmizerany/simply_versioned/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/bmizerany/simply_versioned/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/bmizerany/simply_versioned/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/bmizerany/simply_versioned/contents/{+path}', + compare_url: 'https://api.github.com/repos/bmizerany/simply_versioned/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/bmizerany/simply_versioned/merges', + archive_url: 'https://api.github.com/repos/bmizerany/simply_versioned/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/bmizerany/simply_versioned/downloads', + issues_url: 'https://api.github.com/repos/bmizerany/simply_versioned/issues{/number}', + pulls_url: 'https://api.github.com/repos/bmizerany/simply_versioned/pulls{/number}', + milestones_url: 'https://api.github.com/repos/bmizerany/simply_versioned/milestones{/number}', + notifications_url: 'https://api.github.com/repos/bmizerany/simply_versioned/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/bmizerany/simply_versioned/labels{/name}', + releases_url: 'https://api.github.com/repos/bmizerany/simply_versioned/releases{/id}' }, + { id: 212, + name: 'switchpipe', + full_name: 'peterc/switchpipe', + owner: + { login: 'peterc', + id: 118, + avatar_url: 'https://avatars.githubusercontent.com/u/118?v=2', + gravatar_id: '6268c7528d855f1cef5696a00d159909', + url: 'https://api.github.com/users/peterc', + html_url: 'https://github.com/peterc', + followers_url: 'https://api.github.com/users/peterc/followers', + following_url: 'https://api.github.com/users/peterc/following{/other_user}', + gists_url: 'https://api.github.com/users/peterc/gists{/gist_id}', + starred_url: 'https://api.github.com/users/peterc/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/peterc/subscriptions', + organizations_url: 'https://api.github.com/users/peterc/orgs', + repos_url: 'https://api.github.com/users/peterc/repos', + events_url: 'https://api.github.com/users/peterc/events{/privacy}', + received_events_url: 'https://api.github.com/users/peterc/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/peterc/switchpipe', + description: 'SwitchPipe is a backend process manager and HTTP proxy that makes (especially Ruby) web app deployment simple. NOW OBSOLETE. DO NOT USE.', + fork: false, + url: 'https://api.github.com/repos/peterc/switchpipe', + forks_url: 'https://api.github.com/repos/peterc/switchpipe/forks', + keys_url: 'https://api.github.com/repos/peterc/switchpipe/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/peterc/switchpipe/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/peterc/switchpipe/teams', + hooks_url: 'https://api.github.com/repos/peterc/switchpipe/hooks', + issue_events_url: 'https://api.github.com/repos/peterc/switchpipe/issues/events{/number}', + events_url: 'https://api.github.com/repos/peterc/switchpipe/events', + assignees_url: 'https://api.github.com/repos/peterc/switchpipe/assignees{/user}', + branches_url: 'https://api.github.com/repos/peterc/switchpipe/branches{/branch}', + tags_url: 'https://api.github.com/repos/peterc/switchpipe/tags', + blobs_url: 'https://api.github.com/repos/peterc/switchpipe/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/peterc/switchpipe/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/peterc/switchpipe/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/peterc/switchpipe/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/peterc/switchpipe/statuses/{sha}', + languages_url: 'https://api.github.com/repos/peterc/switchpipe/languages', + stargazers_url: 'https://api.github.com/repos/peterc/switchpipe/stargazers', + contributors_url: 'https://api.github.com/repos/peterc/switchpipe/contributors', + subscribers_url: 'https://api.github.com/repos/peterc/switchpipe/subscribers', + subscription_url: 'https://api.github.com/repos/peterc/switchpipe/subscription', + commits_url: 'https://api.github.com/repos/peterc/switchpipe/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/peterc/switchpipe/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/peterc/switchpipe/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/peterc/switchpipe/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/peterc/switchpipe/contents/{+path}', + compare_url: 'https://api.github.com/repos/peterc/switchpipe/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/peterc/switchpipe/merges', + archive_url: 'https://api.github.com/repos/peterc/switchpipe/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/peterc/switchpipe/downloads', + issues_url: 'https://api.github.com/repos/peterc/switchpipe/issues{/number}', + pulls_url: 'https://api.github.com/repos/peterc/switchpipe/pulls{/number}', + milestones_url: 'https://api.github.com/repos/peterc/switchpipe/milestones{/number}', + notifications_url: 'https://api.github.com/repos/peterc/switchpipe/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/peterc/switchpipe/labels{/name}', + releases_url: 'https://api.github.com/repos/peterc/switchpipe/releases{/id}' }, + { id: 213, + name: 'arc', + full_name: 'hornbeck/arc', + owner: + { login: 'hornbeck', + id: 49, + avatar_url: 'https://avatars.githubusercontent.com/u/49?v=2', + gravatar_id: '47093444301bbde90d0aef5fa5c3ac86', + url: 'https://api.github.com/users/hornbeck', + html_url: 'https://github.com/hornbeck', + followers_url: 'https://api.github.com/users/hornbeck/followers', + following_url: 'https://api.github.com/users/hornbeck/following{/other_user}', + gists_url: 'https://api.github.com/users/hornbeck/gists{/gist_id}', + starred_url: 'https://api.github.com/users/hornbeck/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/hornbeck/subscriptions', + organizations_url: 'https://api.github.com/users/hornbeck/orgs', + repos_url: 'https://api.github.com/users/hornbeck/repos', + events_url: 'https://api.github.com/users/hornbeck/events{/privacy}', + received_events_url: 'https://api.github.com/users/hornbeck/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/hornbeck/arc', + description: 'My arc repo', + fork: false, + url: 'https://api.github.com/repos/hornbeck/arc', + forks_url: 'https://api.github.com/repos/hornbeck/arc/forks', + keys_url: 'https://api.github.com/repos/hornbeck/arc/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/hornbeck/arc/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/hornbeck/arc/teams', + hooks_url: 'https://api.github.com/repos/hornbeck/arc/hooks', + issue_events_url: 'https://api.github.com/repos/hornbeck/arc/issues/events{/number}', + events_url: 'https://api.github.com/repos/hornbeck/arc/events', + assignees_url: 'https://api.github.com/repos/hornbeck/arc/assignees{/user}', + branches_url: 'https://api.github.com/repos/hornbeck/arc/branches{/branch}', + tags_url: 'https://api.github.com/repos/hornbeck/arc/tags', + blobs_url: 'https://api.github.com/repos/hornbeck/arc/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/hornbeck/arc/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/hornbeck/arc/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/hornbeck/arc/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/hornbeck/arc/statuses/{sha}', + languages_url: 'https://api.github.com/repos/hornbeck/arc/languages', + stargazers_url: 'https://api.github.com/repos/hornbeck/arc/stargazers', + contributors_url: 'https://api.github.com/repos/hornbeck/arc/contributors', + subscribers_url: 'https://api.github.com/repos/hornbeck/arc/subscribers', + subscription_url: 'https://api.github.com/repos/hornbeck/arc/subscription', + commits_url: 'https://api.github.com/repos/hornbeck/arc/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/hornbeck/arc/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/hornbeck/arc/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/hornbeck/arc/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/hornbeck/arc/contents/{+path}', + compare_url: 'https://api.github.com/repos/hornbeck/arc/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/hornbeck/arc/merges', + archive_url: 'https://api.github.com/repos/hornbeck/arc/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/hornbeck/arc/downloads', + issues_url: 'https://api.github.com/repos/hornbeck/arc/issues{/number}', + pulls_url: 'https://api.github.com/repos/hornbeck/arc/pulls{/number}', + milestones_url: 'https://api.github.com/repos/hornbeck/arc/milestones{/number}', + notifications_url: 'https://api.github.com/repos/hornbeck/arc/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/hornbeck/arc/labels{/name}', + releases_url: 'https://api.github.com/repos/hornbeck/arc/releases{/id}' }, + { id: 217, + name: 'ebay4r', + full_name: 'up_the_irons/ebay4r', + owner: + { login: 'up_the_irons', + id: 121, + avatar_url: 'https://avatars.githubusercontent.com/u/121?v=2', + gravatar_id: 'd9ae72d7364c7909a0a4b02cba72438a', + url: 'https://api.github.com/users/up_the_irons', + html_url: 'https://github.com/up_the_irons', + followers_url: 'https://api.github.com/users/up_the_irons/followers', + following_url: 'https://api.github.com/users/up_the_irons/following{/other_user}', + gists_url: 'https://api.github.com/users/up_the_irons/gists{/gist_id}', + starred_url: 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/up_the_irons/subscriptions', + organizations_url: 'https://api.github.com/users/up_the_irons/orgs', + repos_url: 'https://api.github.com/users/up_the_irons/repos', + events_url: 'https://api.github.com/users/up_the_irons/events{/privacy}', + received_events_url: 'https://api.github.com/users/up_the_irons/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/up_the_irons/ebay4r', + description: 'eBay4R is a Ruby wrapper for eBay\'s Web Services SOAP API', + fork: false, + url: 'https://api.github.com/repos/up_the_irons/ebay4r', + forks_url: 'https://api.github.com/repos/up_the_irons/ebay4r/forks', + keys_url: 'https://api.github.com/repos/up_the_irons/ebay4r/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/up_the_irons/ebay4r/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/up_the_irons/ebay4r/teams', + hooks_url: 'https://api.github.com/repos/up_the_irons/ebay4r/hooks', + issue_events_url: 'https://api.github.com/repos/up_the_irons/ebay4r/issues/events{/number}', + events_url: 'https://api.github.com/repos/up_the_irons/ebay4r/events', + assignees_url: 'https://api.github.com/repos/up_the_irons/ebay4r/assignees{/user}', + branches_url: 'https://api.github.com/repos/up_the_irons/ebay4r/branches{/branch}', + tags_url: 'https://api.github.com/repos/up_the_irons/ebay4r/tags', + blobs_url: 'https://api.github.com/repos/up_the_irons/ebay4r/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/up_the_irons/ebay4r/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/up_the_irons/ebay4r/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/up_the_irons/ebay4r/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/up_the_irons/ebay4r/statuses/{sha}', + languages_url: 'https://api.github.com/repos/up_the_irons/ebay4r/languages', + stargazers_url: 'https://api.github.com/repos/up_the_irons/ebay4r/stargazers', + contributors_url: 'https://api.github.com/repos/up_the_irons/ebay4r/contributors', + subscribers_url: 'https://api.github.com/repos/up_the_irons/ebay4r/subscribers', + subscription_url: 'https://api.github.com/repos/up_the_irons/ebay4r/subscription', + commits_url: 'https://api.github.com/repos/up_the_irons/ebay4r/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/up_the_irons/ebay4r/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/up_the_irons/ebay4r/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/up_the_irons/ebay4r/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/up_the_irons/ebay4r/contents/{+path}', + compare_url: 'https://api.github.com/repos/up_the_irons/ebay4r/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/up_the_irons/ebay4r/merges', + archive_url: 'https://api.github.com/repos/up_the_irons/ebay4r/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/up_the_irons/ebay4r/downloads', + issues_url: 'https://api.github.com/repos/up_the_irons/ebay4r/issues{/number}', + pulls_url: 'https://api.github.com/repos/up_the_irons/ebay4r/pulls{/number}', + milestones_url: 'https://api.github.com/repos/up_the_irons/ebay4r/milestones{/number}', + notifications_url: 'https://api.github.com/repos/up_the_irons/ebay4r/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/up_the_irons/ebay4r/labels{/name}', + releases_url: 'https://api.github.com/repos/up_the_irons/ebay4r/releases{/id}' }, + { id: 218, + name: 'merb-plugins', + full_name: 'wycats/merb-plugins', + owner: + { login: 'wycats', + id: 4, + avatar_url: 'https://avatars.githubusercontent.com/u/4?v=2', + gravatar_id: '428167a3ec72235ba971162924492609', + url: 'https://api.github.com/users/wycats', + html_url: 'https://github.com/wycats', + followers_url: 'https://api.github.com/users/wycats/followers', + following_url: 'https://api.github.com/users/wycats/following{/other_user}', + gists_url: 'https://api.github.com/users/wycats/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wycats/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wycats/subscriptions', + organizations_url: 'https://api.github.com/users/wycats/orgs', + repos_url: 'https://api.github.com/users/wycats/repos', + events_url: 'https://api.github.com/users/wycats/events{/privacy}', + received_events_url: 'https://api.github.com/users/wycats/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wycats/merb-plugins', + description: 'Merb Plugins: Even more modules to hook up your Merb installation', + fork: false, + url: 'https://api.github.com/repos/wycats/merb-plugins', + forks_url: 'https://api.github.com/repos/wycats/merb-plugins/forks', + keys_url: 'https://api.github.com/repos/wycats/merb-plugins/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wycats/merb-plugins/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wycats/merb-plugins/teams', + hooks_url: 'https://api.github.com/repos/wycats/merb-plugins/hooks', + issue_events_url: 'https://api.github.com/repos/wycats/merb-plugins/issues/events{/number}', + events_url: 'https://api.github.com/repos/wycats/merb-plugins/events', + assignees_url: 'https://api.github.com/repos/wycats/merb-plugins/assignees{/user}', + branches_url: 'https://api.github.com/repos/wycats/merb-plugins/branches{/branch}', + tags_url: 'https://api.github.com/repos/wycats/merb-plugins/tags', + blobs_url: 'https://api.github.com/repos/wycats/merb-plugins/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wycats/merb-plugins/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wycats/merb-plugins/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wycats/merb-plugins/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wycats/merb-plugins/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wycats/merb-plugins/languages', + stargazers_url: 'https://api.github.com/repos/wycats/merb-plugins/stargazers', + contributors_url: 'https://api.github.com/repos/wycats/merb-plugins/contributors', + subscribers_url: 'https://api.github.com/repos/wycats/merb-plugins/subscribers', + subscription_url: 'https://api.github.com/repos/wycats/merb-plugins/subscription', + commits_url: 'https://api.github.com/repos/wycats/merb-plugins/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wycats/merb-plugins/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wycats/merb-plugins/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wycats/merb-plugins/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wycats/merb-plugins/contents/{+path}', + compare_url: 'https://api.github.com/repos/wycats/merb-plugins/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wycats/merb-plugins/merges', + archive_url: 'https://api.github.com/repos/wycats/merb-plugins/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wycats/merb-plugins/downloads', + issues_url: 'https://api.github.com/repos/wycats/merb-plugins/issues{/number}', + pulls_url: 'https://api.github.com/repos/wycats/merb-plugins/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wycats/merb-plugins/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wycats/merb-plugins/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wycats/merb-plugins/labels{/name}', + releases_url: 'https://api.github.com/repos/wycats/merb-plugins/releases{/id}' }, + { id: 220, + name: 'ram', + full_name: 'up_the_irons/ram', + owner: + { login: 'up_the_irons', + id: 121, + avatar_url: 'https://avatars.githubusercontent.com/u/121?v=2', + gravatar_id: 'd9ae72d7364c7909a0a4b02cba72438a', + url: 'https://api.github.com/users/up_the_irons', + html_url: 'https://github.com/up_the_irons', + followers_url: 'https://api.github.com/users/up_the_irons/followers', + following_url: 'https://api.github.com/users/up_the_irons/following{/other_user}', + gists_url: 'https://api.github.com/users/up_the_irons/gists{/gist_id}', + starred_url: 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/up_the_irons/subscriptions', + organizations_url: 'https://api.github.com/users/up_the_irons/orgs', + repos_url: 'https://api.github.com/users/up_the_irons/repos', + events_url: 'https://api.github.com/users/up_the_irons/events{/privacy}', + received_events_url: 'https://api.github.com/users/up_the_irons/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/up_the_irons/ram', + description: 'Ruby Asset Manager', + fork: false, + url: 'https://api.github.com/repos/up_the_irons/ram', + forks_url: 'https://api.github.com/repos/up_the_irons/ram/forks', + keys_url: 'https://api.github.com/repos/up_the_irons/ram/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/up_the_irons/ram/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/up_the_irons/ram/teams', + hooks_url: 'https://api.github.com/repos/up_the_irons/ram/hooks', + issue_events_url: 'https://api.github.com/repos/up_the_irons/ram/issues/events{/number}', + events_url: 'https://api.github.com/repos/up_the_irons/ram/events', + assignees_url: 'https://api.github.com/repos/up_the_irons/ram/assignees{/user}', + branches_url: 'https://api.github.com/repos/up_the_irons/ram/branches{/branch}', + tags_url: 'https://api.github.com/repos/up_the_irons/ram/tags', + blobs_url: 'https://api.github.com/repos/up_the_irons/ram/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/up_the_irons/ram/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/up_the_irons/ram/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/up_the_irons/ram/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/up_the_irons/ram/statuses/{sha}', + languages_url: 'https://api.github.com/repos/up_the_irons/ram/languages', + stargazers_url: 'https://api.github.com/repos/up_the_irons/ram/stargazers', + contributors_url: 'https://api.github.com/repos/up_the_irons/ram/contributors', + subscribers_url: 'https://api.github.com/repos/up_the_irons/ram/subscribers', + subscription_url: 'https://api.github.com/repos/up_the_irons/ram/subscription', + commits_url: 'https://api.github.com/repos/up_the_irons/ram/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/up_the_irons/ram/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/up_the_irons/ram/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/up_the_irons/ram/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/up_the_irons/ram/contents/{+path}', + compare_url: 'https://api.github.com/repos/up_the_irons/ram/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/up_the_irons/ram/merges', + archive_url: 'https://api.github.com/repos/up_the_irons/ram/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/up_the_irons/ram/downloads', + issues_url: 'https://api.github.com/repos/up_the_irons/ram/issues{/number}', + pulls_url: 'https://api.github.com/repos/up_the_irons/ram/pulls{/number}', + milestones_url: 'https://api.github.com/repos/up_the_irons/ram/milestones{/number}', + notifications_url: 'https://api.github.com/repos/up_the_irons/ram/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/up_the_irons/ram/labels{/name}', + releases_url: 'https://api.github.com/repos/up_the_irons/ram/releases{/id}' }, + { id: 230, + name: 'ambitious_activeldap', + full_name: 'defunkt/ambitious_activeldap', + owner: + { login: 'defunkt', + id: 2, + avatar_url: 'https://avatars.githubusercontent.com/u/2?v=2', + gravatar_id: 'b8dbb1987e8e5318584865f880036796', + url: 'https://api.github.com/users/defunkt', + html_url: 'https://github.com/defunkt', + followers_url: 'https://api.github.com/users/defunkt/followers', + following_url: 'https://api.github.com/users/defunkt/following{/other_user}', + gists_url: 'https://api.github.com/users/defunkt/gists{/gist_id}', + starred_url: 'https://api.github.com/users/defunkt/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/defunkt/subscriptions', + organizations_url: 'https://api.github.com/users/defunkt/orgs', + repos_url: 'https://api.github.com/users/defunkt/repos', + events_url: 'https://api.github.com/users/defunkt/events{/privacy}', + received_events_url: 'https://api.github.com/users/defunkt/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/defunkt/ambitious_activeldap', + description: 'Ambition adapter for ActiveLdap', + fork: true, + url: 'https://api.github.com/repos/defunkt/ambitious_activeldap', + forks_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/forks', + keys_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/teams', + hooks_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/hooks', + issue_events_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues/events{/number}', + events_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/events', + assignees_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/assignees{/user}', + branches_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/branches{/branch}', + tags_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/tags', + blobs_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/statuses/{sha}', + languages_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/languages', + stargazers_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/stargazers', + contributors_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/contributors', + subscribers_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/subscribers', + subscription_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/subscription', + commits_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/contents/{+path}', + compare_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/merges', + archive_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/downloads', + issues_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues{/number}', + pulls_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/pulls{/number}', + milestones_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/milestones{/number}', + notifications_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/labels{/name}', + releases_url: 'https://api.github.com/repos/defunkt/ambitious_activeldap/releases{/id}' }, + { id: 232, + name: 'fitter_happier', + full_name: 'atmos/fitter_happier', + owner: + { login: 'atmos', + id: 38, + avatar_url: 'https://avatars.githubusercontent.com/u/38?v=2', + gravatar_id: 'a86224d72ce21cd9f5bee6784d4b06c7', + url: 'https://api.github.com/users/atmos', + html_url: 'https://github.com/atmos', + followers_url: 'https://api.github.com/users/atmos/followers', + following_url: 'https://api.github.com/users/atmos/following{/other_user}', + gists_url: 'https://api.github.com/users/atmos/gists{/gist_id}', + starred_url: 'https://api.github.com/users/atmos/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/atmos/subscriptions', + organizations_url: 'https://api.github.com/users/atmos/orgs', + repos_url: 'https://api.github.com/users/atmos/repos', + events_url: 'https://api.github.com/users/atmos/events{/privacy}', + received_events_url: 'https://api.github.com/users/atmos/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/atmos/fitter_happier', + description: 'A Rails Plugin for adding a simple health check to your application', + fork: false, + url: 'https://api.github.com/repos/atmos/fitter_happier', + forks_url: 'https://api.github.com/repos/atmos/fitter_happier/forks', + keys_url: 'https://api.github.com/repos/atmos/fitter_happier/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/atmos/fitter_happier/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/atmos/fitter_happier/teams', + hooks_url: 'https://api.github.com/repos/atmos/fitter_happier/hooks', + issue_events_url: 'https://api.github.com/repos/atmos/fitter_happier/issues/events{/number}', + events_url: 'https://api.github.com/repos/atmos/fitter_happier/events', + assignees_url: 'https://api.github.com/repos/atmos/fitter_happier/assignees{/user}', + branches_url: 'https://api.github.com/repos/atmos/fitter_happier/branches{/branch}', + tags_url: 'https://api.github.com/repos/atmos/fitter_happier/tags', + blobs_url: 'https://api.github.com/repos/atmos/fitter_happier/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/atmos/fitter_happier/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/atmos/fitter_happier/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/atmos/fitter_happier/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/atmos/fitter_happier/statuses/{sha}', + languages_url: 'https://api.github.com/repos/atmos/fitter_happier/languages', + stargazers_url: 'https://api.github.com/repos/atmos/fitter_happier/stargazers', + contributors_url: 'https://api.github.com/repos/atmos/fitter_happier/contributors', + subscribers_url: 'https://api.github.com/repos/atmos/fitter_happier/subscribers', + subscription_url: 'https://api.github.com/repos/atmos/fitter_happier/subscription', + commits_url: 'https://api.github.com/repos/atmos/fitter_happier/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/atmos/fitter_happier/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/atmos/fitter_happier/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/atmos/fitter_happier/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/atmos/fitter_happier/contents/{+path}', + compare_url: 'https://api.github.com/repos/atmos/fitter_happier/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/atmos/fitter_happier/merges', + archive_url: 'https://api.github.com/repos/atmos/fitter_happier/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/atmos/fitter_happier/downloads', + issues_url: 'https://api.github.com/repos/atmos/fitter_happier/issues{/number}', + pulls_url: 'https://api.github.com/repos/atmos/fitter_happier/pulls{/number}', + milestones_url: 'https://api.github.com/repos/atmos/fitter_happier/milestones{/number}', + notifications_url: 'https://api.github.com/repos/atmos/fitter_happier/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/atmos/fitter_happier/labels{/name}', + releases_url: 'https://api.github.com/repos/atmos/fitter_happier/releases{/id}' }, + { id: 237, + name: 'oebfare', + full_name: 'brosner/oebfare', + owner: + { login: 'brosner', + id: 124, + avatar_url: 'https://avatars.githubusercontent.com/u/124?v=2', + gravatar_id: 'b7472bc7aa45c70641c299e9408b78ab', + url: 'https://api.github.com/users/brosner', + html_url: 'https://github.com/brosner', + followers_url: 'https://api.github.com/users/brosner/followers', + following_url: 'https://api.github.com/users/brosner/following{/other_user}', + gists_url: 'https://api.github.com/users/brosner/gists{/gist_id}', + starred_url: 'https://api.github.com/users/brosner/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/brosner/subscriptions', + organizations_url: 'https://api.github.com/users/brosner/orgs', + repos_url: 'https://api.github.com/users/brosner/repos', + events_url: 'https://api.github.com/users/brosner/events{/privacy}', + received_events_url: 'https://api.github.com/users/brosner/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/brosner/oebfare', + description: 'my personal blog written with django', + fork: false, + url: 'https://api.github.com/repos/brosner/oebfare', + forks_url: 'https://api.github.com/repos/brosner/oebfare/forks', + keys_url: 'https://api.github.com/repos/brosner/oebfare/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/brosner/oebfare/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/brosner/oebfare/teams', + hooks_url: 'https://api.github.com/repos/brosner/oebfare/hooks', + issue_events_url: 'https://api.github.com/repos/brosner/oebfare/issues/events{/number}', + events_url: 'https://api.github.com/repos/brosner/oebfare/events', + assignees_url: 'https://api.github.com/repos/brosner/oebfare/assignees{/user}', + branches_url: 'https://api.github.com/repos/brosner/oebfare/branches{/branch}', + tags_url: 'https://api.github.com/repos/brosner/oebfare/tags', + blobs_url: 'https://api.github.com/repos/brosner/oebfare/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/brosner/oebfare/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/brosner/oebfare/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/brosner/oebfare/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/brosner/oebfare/statuses/{sha}', + languages_url: 'https://api.github.com/repos/brosner/oebfare/languages', + stargazers_url: 'https://api.github.com/repos/brosner/oebfare/stargazers', + contributors_url: 'https://api.github.com/repos/brosner/oebfare/contributors', + subscribers_url: 'https://api.github.com/repos/brosner/oebfare/subscribers', + subscription_url: 'https://api.github.com/repos/brosner/oebfare/subscription', + commits_url: 'https://api.github.com/repos/brosner/oebfare/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/brosner/oebfare/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/brosner/oebfare/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/brosner/oebfare/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/brosner/oebfare/contents/{+path}', + compare_url: 'https://api.github.com/repos/brosner/oebfare/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/brosner/oebfare/merges', + archive_url: 'https://api.github.com/repos/brosner/oebfare/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/brosner/oebfare/downloads', + issues_url: 'https://api.github.com/repos/brosner/oebfare/issues{/number}', + pulls_url: 'https://api.github.com/repos/brosner/oebfare/pulls{/number}', + milestones_url: 'https://api.github.com/repos/brosner/oebfare/milestones{/number}', + notifications_url: 'https://api.github.com/repos/brosner/oebfare/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/brosner/oebfare/labels{/name}', + releases_url: 'https://api.github.com/repos/brosner/oebfare/releases{/id}' }, + { id: 245, + name: 'credit_card_tools', + full_name: 'up_the_irons/credit_card_tools', + owner: + { login: 'up_the_irons', + id: 121, + avatar_url: 'https://avatars.githubusercontent.com/u/121?v=2', + gravatar_id: 'd9ae72d7364c7909a0a4b02cba72438a', + url: 'https://api.github.com/users/up_the_irons', + html_url: 'https://github.com/up_the_irons', + followers_url: 'https://api.github.com/users/up_the_irons/followers', + following_url: 'https://api.github.com/users/up_the_irons/following{/other_user}', + gists_url: 'https://api.github.com/users/up_the_irons/gists{/gist_id}', + starred_url: 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/up_the_irons/subscriptions', + organizations_url: 'https://api.github.com/users/up_the_irons/orgs', + repos_url: 'https://api.github.com/users/up_the_irons/repos', + events_url: 'https://api.github.com/users/up_the_irons/events{/privacy}', + received_events_url: 'https://api.github.com/users/up_the_irons/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/up_the_irons/credit_card_tools', + description: 'Tools for processing credit cards on the command line', + fork: false, + url: 'https://api.github.com/repos/up_the_irons/credit_card_tools', + forks_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/forks', + keys_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/teams', + hooks_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/hooks', + issue_events_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues/events{/number}', + events_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/events', + assignees_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/assignees{/user}', + branches_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/branches{/branch}', + tags_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/tags', + blobs_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/statuses/{sha}', + languages_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/languages', + stargazers_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/stargazers', + contributors_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/contributors', + subscribers_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/subscribers', + subscription_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/subscription', + commits_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/contents/{+path}', + compare_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/merges', + archive_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/downloads', + issues_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues{/number}', + pulls_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/pulls{/number}', + milestones_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/milestones{/number}', + notifications_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/labels{/name}', + releases_url: 'https://api.github.com/repos/up_the_irons/credit_card_tools/releases{/id}' }, + { id: 248, + name: 'rorem', + full_name: 'jnicklas/rorem', + owner: + { login: 'jnicklas', + id: 134, + avatar_url: 'https://avatars.githubusercontent.com/u/134?v=2', + gravatar_id: '6c469749d725177dd2837d806c769cd4', + url: 'https://api.github.com/users/jnicklas', + html_url: 'https://github.com/jnicklas', + followers_url: 'https://api.github.com/users/jnicklas/followers', + following_url: 'https://api.github.com/users/jnicklas/following{/other_user}', + gists_url: 'https://api.github.com/users/jnicklas/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnicklas/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnicklas/subscriptions', + organizations_url: 'https://api.github.com/users/jnicklas/orgs', + repos_url: 'https://api.github.com/users/jnicklas/repos', + events_url: 'https://api.github.com/users/jnicklas/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnicklas/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/jnicklas/rorem', + description: 'Rorem is a random data generator', + fork: false, + url: 'https://api.github.com/repos/jnicklas/rorem', + forks_url: 'https://api.github.com/repos/jnicklas/rorem/forks', + keys_url: 'https://api.github.com/repos/jnicklas/rorem/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnicklas/rorem/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnicklas/rorem/teams', + hooks_url: 'https://api.github.com/repos/jnicklas/rorem/hooks', + issue_events_url: 'https://api.github.com/repos/jnicklas/rorem/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnicklas/rorem/events', + assignees_url: 'https://api.github.com/repos/jnicklas/rorem/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnicklas/rorem/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnicklas/rorem/tags', + blobs_url: 'https://api.github.com/repos/jnicklas/rorem/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnicklas/rorem/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnicklas/rorem/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnicklas/rorem/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnicklas/rorem/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnicklas/rorem/languages', + stargazers_url: 'https://api.github.com/repos/jnicklas/rorem/stargazers', + contributors_url: 'https://api.github.com/repos/jnicklas/rorem/contributors', + subscribers_url: 'https://api.github.com/repos/jnicklas/rorem/subscribers', + subscription_url: 'https://api.github.com/repos/jnicklas/rorem/subscription', + commits_url: 'https://api.github.com/repos/jnicklas/rorem/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnicklas/rorem/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnicklas/rorem/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnicklas/rorem/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnicklas/rorem/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnicklas/rorem/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnicklas/rorem/merges', + archive_url: 'https://api.github.com/repos/jnicklas/rorem/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnicklas/rorem/downloads', + issues_url: 'https://api.github.com/repos/jnicklas/rorem/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnicklas/rorem/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnicklas/rorem/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnicklas/rorem/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnicklas/rorem/labels{/name}', + releases_url: 'https://api.github.com/repos/jnicklas/rorem/releases{/id}' }, + { id: 249, + name: 'braid', + full_name: 'cristibalan/braid', + owner: + { login: 'cristibalan', + id: 122, + avatar_url: 'https://avatars.githubusercontent.com/u/122?v=2', + gravatar_id: '0e8c5f8d88cfc1aeeb59acdcc8aad387', + url: 'https://api.github.com/users/cristibalan', + html_url: 'https://github.com/cristibalan', + followers_url: 'https://api.github.com/users/cristibalan/followers', + following_url: 'https://api.github.com/users/cristibalan/following{/other_user}', + gists_url: 'https://api.github.com/users/cristibalan/gists{/gist_id}', + starred_url: 'https://api.github.com/users/cristibalan/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/cristibalan/subscriptions', + organizations_url: 'https://api.github.com/users/cristibalan/orgs', + repos_url: 'https://api.github.com/users/cristibalan/repos', + events_url: 'https://api.github.com/users/cristibalan/events{/privacy}', + received_events_url: 'https://api.github.com/users/cristibalan/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/cristibalan/braid', + description: 'Simple tool to help track git and svn vendor branches in a git repository', + fork: false, + url: 'https://api.github.com/repos/cristibalan/braid', + forks_url: 'https://api.github.com/repos/cristibalan/braid/forks', + keys_url: 'https://api.github.com/repos/cristibalan/braid/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/cristibalan/braid/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/cristibalan/braid/teams', + hooks_url: 'https://api.github.com/repos/cristibalan/braid/hooks', + issue_events_url: 'https://api.github.com/repos/cristibalan/braid/issues/events{/number}', + events_url: 'https://api.github.com/repos/cristibalan/braid/events', + assignees_url: 'https://api.github.com/repos/cristibalan/braid/assignees{/user}', + branches_url: 'https://api.github.com/repos/cristibalan/braid/branches{/branch}', + tags_url: 'https://api.github.com/repos/cristibalan/braid/tags', + blobs_url: 'https://api.github.com/repos/cristibalan/braid/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/cristibalan/braid/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/cristibalan/braid/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/cristibalan/braid/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/cristibalan/braid/statuses/{sha}', + languages_url: 'https://api.github.com/repos/cristibalan/braid/languages', + stargazers_url: 'https://api.github.com/repos/cristibalan/braid/stargazers', + contributors_url: 'https://api.github.com/repos/cristibalan/braid/contributors', + subscribers_url: 'https://api.github.com/repos/cristibalan/braid/subscribers', + subscription_url: 'https://api.github.com/repos/cristibalan/braid/subscription', + commits_url: 'https://api.github.com/repos/cristibalan/braid/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/cristibalan/braid/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/cristibalan/braid/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/cristibalan/braid/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/cristibalan/braid/contents/{+path}', + compare_url: 'https://api.github.com/repos/cristibalan/braid/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/cristibalan/braid/merges', + archive_url: 'https://api.github.com/repos/cristibalan/braid/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/cristibalan/braid/downloads', + issues_url: 'https://api.github.com/repos/cristibalan/braid/issues{/number}', + pulls_url: 'https://api.github.com/repos/cristibalan/braid/pulls{/number}', + milestones_url: 'https://api.github.com/repos/cristibalan/braid/milestones{/number}', + notifications_url: 'https://api.github.com/repos/cristibalan/braid/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/cristibalan/braid/labels{/name}', + releases_url: 'https://api.github.com/repos/cristibalan/braid/releases{/id}' }, + { id: 251, + name: 'uploadcolumn', + full_name: 'jnicklas/uploadcolumn', + owner: + { login: 'jnicklas', + id: 134, + avatar_url: 'https://avatars.githubusercontent.com/u/134?v=2', + gravatar_id: '6c469749d725177dd2837d806c769cd4', + url: 'https://api.github.com/users/jnicklas', + html_url: 'https://github.com/jnicklas', + followers_url: 'https://api.github.com/users/jnicklas/followers', + following_url: 'https://api.github.com/users/jnicklas/following{/other_user}', + gists_url: 'https://api.github.com/users/jnicklas/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnicklas/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnicklas/subscriptions', + organizations_url: 'https://api.github.com/users/jnicklas/orgs', + repos_url: 'https://api.github.com/users/jnicklas/repos', + events_url: 'https://api.github.com/users/jnicklas/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnicklas/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/jnicklas/uploadcolumn', + description: 'UploadColumn is no longer maintained, check out CarrierWave for an alternative', + fork: false, + url: 'https://api.github.com/repos/jnicklas/uploadcolumn', + forks_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/forks', + keys_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/teams', + hooks_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/hooks', + issue_events_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/events', + assignees_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/tags', + blobs_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/languages', + stargazers_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/stargazers', + contributors_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/contributors', + subscribers_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/subscribers', + subscription_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/subscription', + commits_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/merges', + archive_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/downloads', + issues_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/labels{/name}', + releases_url: 'https://api.github.com/repos/jnicklas/uploadcolumn/releases{/id}' }, + { id: 252, + name: 'ruby-on-rails-tmbundle', + full_name: 'simonjefford/ruby-on-rails-tmbundle', + owner: + { login: 'simonjefford', + id: 136, + avatar_url: 'https://avatars.githubusercontent.com/u/136?v=2', + gravatar_id: '46fd60ea4dde74f3d46fcfd27ed700bf', + url: 'https://api.github.com/users/simonjefford', + html_url: 'https://github.com/simonjefford', + followers_url: 'https://api.github.com/users/simonjefford/followers', + following_url: 'https://api.github.com/users/simonjefford/following{/other_user}', + gists_url: 'https://api.github.com/users/simonjefford/gists{/gist_id}', + starred_url: 'https://api.github.com/users/simonjefford/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/simonjefford/subscriptions', + organizations_url: 'https://api.github.com/users/simonjefford/orgs', + repos_url: 'https://api.github.com/users/simonjefford/repos', + events_url: 'https://api.github.com/users/simonjefford/events{/privacy}', + received_events_url: 'https://api.github.com/users/simonjefford/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/simonjefford/ruby-on-rails-tmbundle', + description: 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]', + fork: true, + url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle', + forks_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/forks', + keys_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/teams', + hooks_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/hooks', + issue_events_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/events{/number}', + events_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/events', + assignees_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/assignees{/user}', + branches_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/branches{/branch}', + tags_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/tags', + blobs_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/statuses/{sha}', + languages_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/languages', + stargazers_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/stargazers', + contributors_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contributors', + subscribers_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscribers', + subscription_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscription', + commits_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contents/{+path}', + compare_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/merges', + archive_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/downloads', + issues_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues{/number}', + pulls_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/pulls{/number}', + milestones_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/milestones{/number}', + notifications_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/labels{/name}', + releases_url: 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/releases{/id}' }, + { id: 256, + name: 'rack-mirror', + full_name: 'chneukirchen/rack-mirror', + owner: + { login: 'chneukirchen', + id: 139, + avatar_url: 'https://avatars.githubusercontent.com/u/139?v=2', + gravatar_id: '7264fb16beeea92b89bb42023738259d', + url: 'https://api.github.com/users/chneukirchen', + html_url: 'https://github.com/chneukirchen', + followers_url: 'https://api.github.com/users/chneukirchen/followers', + following_url: 'https://api.github.com/users/chneukirchen/following{/other_user}', + gists_url: 'https://api.github.com/users/chneukirchen/gists{/gist_id}', + starred_url: 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/chneukirchen/subscriptions', + organizations_url: 'https://api.github.com/users/chneukirchen/orgs', + repos_url: 'https://api.github.com/users/chneukirchen/repos', + events_url: 'https://api.github.com/users/chneukirchen/events{/privacy}', + received_events_url: 'https://api.github.com/users/chneukirchen/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/chneukirchen/rack-mirror', + description: 'OUTDATED mirror of Rack\'s darcs repository, use github.com/chneukirchen/rack', + fork: false, + url: 'https://api.github.com/repos/chneukirchen/rack-mirror', + forks_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/forks', + keys_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/teams', + hooks_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/hooks', + issue_events_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/issues/events{/number}', + events_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/events', + assignees_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/assignees{/user}', + branches_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/branches{/branch}', + tags_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/tags', + blobs_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/statuses/{sha}', + languages_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/languages', + stargazers_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/stargazers', + contributors_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/contributors', + subscribers_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/subscribers', + subscription_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/subscription', + commits_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/contents/{+path}', + compare_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/merges', + archive_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/downloads', + issues_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/issues{/number}', + pulls_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/pulls{/number}', + milestones_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/milestones{/number}', + notifications_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/labels{/name}', + releases_url: 'https://api.github.com/repos/chneukirchen/rack-mirror/releases{/id}' }, + { id: 257, + name: 'coset-mirror', + full_name: 'chneukirchen/coset-mirror', + owner: + { login: 'chneukirchen', + id: 139, + avatar_url: 'https://avatars.githubusercontent.com/u/139?v=2', + gravatar_id: '7264fb16beeea92b89bb42023738259d', + url: 'https://api.github.com/users/chneukirchen', + html_url: 'https://github.com/chneukirchen', + followers_url: 'https://api.github.com/users/chneukirchen/followers', + following_url: 'https://api.github.com/users/chneukirchen/following{/other_user}', + gists_url: 'https://api.github.com/users/chneukirchen/gists{/gist_id}', + starred_url: 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/chneukirchen/subscriptions', + organizations_url: 'https://api.github.com/users/chneukirchen/orgs', + repos_url: 'https://api.github.com/users/chneukirchen/repos', + events_url: 'https://api.github.com/users/chneukirchen/events{/privacy}', + received_events_url: 'https://api.github.com/users/chneukirchen/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/chneukirchen/coset-mirror', + description: '(experimental) Mirror of the coset darcs repository', + fork: false, + url: 'https://api.github.com/repos/chneukirchen/coset-mirror', + forks_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/forks', + keys_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/teams', + hooks_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/hooks', + issue_events_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/issues/events{/number}', + events_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/events', + assignees_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/assignees{/user}', + branches_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/branches{/branch}', + tags_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/tags', + blobs_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/statuses/{sha}', + languages_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/languages', + stargazers_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/stargazers', + contributors_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/contributors', + subscribers_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/subscribers', + subscription_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/subscription', + commits_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/contents/{+path}', + compare_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/merges', + archive_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/downloads', + issues_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/issues{/number}', + pulls_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/pulls{/number}', + milestones_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/milestones{/number}', + notifications_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/labels{/name}', + releases_url: 'https://api.github.com/repos/chneukirchen/coset-mirror/releases{/id}' }, + { id: 267, + name: 'javascript-unittest-tmbundle', + full_name: 'drnic/javascript-unittest-tmbundle', + owner: + { login: 'drnic', + id: 108, + avatar_url: 'https://avatars.githubusercontent.com/u/108?v=2', + gravatar_id: 'cb2b768a5e546b24052ea03334e43676', + url: 'https://api.github.com/users/drnic', + html_url: 'https://github.com/drnic', + followers_url: 'https://api.github.com/users/drnic/followers', + following_url: 'https://api.github.com/users/drnic/following{/other_user}', + gists_url: 'https://api.github.com/users/drnic/gists{/gist_id}', + starred_url: 'https://api.github.com/users/drnic/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/drnic/subscriptions', + organizations_url: 'https://api.github.com/users/drnic/orgs', + repos_url: 'https://api.github.com/users/drnic/repos', + events_url: 'https://api.github.com/users/drnic/events{/privacy}', + received_events_url: 'https://api.github.com/users/drnic/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/drnic/javascript-unittest-tmbundle', + description: 'JavaScript Unit Test TextMate Bundle [for prototype\'s unittest.js library]', + fork: false, + url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle', + forks_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/forks', + keys_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/teams', + hooks_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/hooks', + issue_events_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/events{/number}', + events_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/events', + assignees_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/assignees{/user}', + branches_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/branches{/branch}', + tags_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/tags', + blobs_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/statuses/{sha}', + languages_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/languages', + stargazers_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/stargazers', + contributors_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contributors', + subscribers_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscribers', + subscription_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscription', + commits_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contents/{+path}', + compare_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/merges', + archive_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/downloads', + issues_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues{/number}', + pulls_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/pulls{/number}', + milestones_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/milestones{/number}', + notifications_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/labels{/name}', + releases_url: 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/releases{/id}' }, + { id: 273, + name: 'eycap', + full_name: 'engineyard/eycap', + owner: + { login: 'engineyard', + id: 81, + avatar_url: 'https://avatars.githubusercontent.com/u/81?v=2', + gravatar_id: 'bdfd943727e77a03a3e278ede92f10eb', + url: 'https://api.github.com/users/engineyard', + html_url: 'https://github.com/engineyard', + followers_url: 'https://api.github.com/users/engineyard/followers', + following_url: 'https://api.github.com/users/engineyard/following{/other_user}', + gists_url: 'https://api.github.com/users/engineyard/gists{/gist_id}', + starred_url: 'https://api.github.com/users/engineyard/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/engineyard/subscriptions', + organizations_url: 'https://api.github.com/users/engineyard/orgs', + repos_url: 'https://api.github.com/users/engineyard/repos', + events_url: 'https://api.github.com/users/engineyard/events{/privacy}', + received_events_url: 'https://api.github.com/users/engineyard/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/engineyard/eycap', + description: 'Engine Yard specific capistrano recipes', + fork: false, + url: 'https://api.github.com/repos/engineyard/eycap', + forks_url: 'https://api.github.com/repos/engineyard/eycap/forks', + keys_url: 'https://api.github.com/repos/engineyard/eycap/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/engineyard/eycap/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/engineyard/eycap/teams', + hooks_url: 'https://api.github.com/repos/engineyard/eycap/hooks', + issue_events_url: 'https://api.github.com/repos/engineyard/eycap/issues/events{/number}', + events_url: 'https://api.github.com/repos/engineyard/eycap/events', + assignees_url: 'https://api.github.com/repos/engineyard/eycap/assignees{/user}', + branches_url: 'https://api.github.com/repos/engineyard/eycap/branches{/branch}', + tags_url: 'https://api.github.com/repos/engineyard/eycap/tags', + blobs_url: 'https://api.github.com/repos/engineyard/eycap/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/engineyard/eycap/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/engineyard/eycap/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/engineyard/eycap/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/engineyard/eycap/statuses/{sha}', + languages_url: 'https://api.github.com/repos/engineyard/eycap/languages', + stargazers_url: 'https://api.github.com/repos/engineyard/eycap/stargazers', + contributors_url: 'https://api.github.com/repos/engineyard/eycap/contributors', + subscribers_url: 'https://api.github.com/repos/engineyard/eycap/subscribers', + subscription_url: 'https://api.github.com/repos/engineyard/eycap/subscription', + commits_url: 'https://api.github.com/repos/engineyard/eycap/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/engineyard/eycap/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/engineyard/eycap/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/engineyard/eycap/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/engineyard/eycap/contents/{+path}', + compare_url: 'https://api.github.com/repos/engineyard/eycap/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/engineyard/eycap/merges', + archive_url: 'https://api.github.com/repos/engineyard/eycap/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/engineyard/eycap/downloads', + issues_url: 'https://api.github.com/repos/engineyard/eycap/issues{/number}', + pulls_url: 'https://api.github.com/repos/engineyard/eycap/pulls{/number}', + milestones_url: 'https://api.github.com/repos/engineyard/eycap/milestones{/number}', + notifications_url: 'https://api.github.com/repos/engineyard/eycap/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/engineyard/eycap/labels{/name}', + releases_url: 'https://api.github.com/repos/engineyard/eycap/releases{/id}' }, + { id: 279, + name: 'gitsum', + full_name: 'chneukirchen/gitsum', + owner: + { login: 'chneukirchen', + id: 139, + avatar_url: 'https://avatars.githubusercontent.com/u/139?v=2', + gravatar_id: '7264fb16beeea92b89bb42023738259d', + url: 'https://api.github.com/users/chneukirchen', + html_url: 'https://github.com/chneukirchen', + followers_url: 'https://api.github.com/users/chneukirchen/followers', + following_url: 'https://api.github.com/users/chneukirchen/following{/other_user}', + gists_url: 'https://api.github.com/users/chneukirchen/gists{/gist_id}', + starred_url: 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/chneukirchen/subscriptions', + organizations_url: 'https://api.github.com/users/chneukirchen/orgs', + repos_url: 'https://api.github.com/users/chneukirchen/repos', + events_url: 'https://api.github.com/users/chneukirchen/events{/privacy}', + received_events_url: 'https://api.github.com/users/chneukirchen/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/chneukirchen/gitsum', + description: 'basic darcsum feelalike for Git', + fork: false, + url: 'https://api.github.com/repos/chneukirchen/gitsum', + forks_url: 'https://api.github.com/repos/chneukirchen/gitsum/forks', + keys_url: 'https://api.github.com/repos/chneukirchen/gitsum/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/chneukirchen/gitsum/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/chneukirchen/gitsum/teams', + hooks_url: 'https://api.github.com/repos/chneukirchen/gitsum/hooks', + issue_events_url: 'https://api.github.com/repos/chneukirchen/gitsum/issues/events{/number}', + events_url: 'https://api.github.com/repos/chneukirchen/gitsum/events', + assignees_url: 'https://api.github.com/repos/chneukirchen/gitsum/assignees{/user}', + branches_url: 'https://api.github.com/repos/chneukirchen/gitsum/branches{/branch}', + tags_url: 'https://api.github.com/repos/chneukirchen/gitsum/tags', + blobs_url: 'https://api.github.com/repos/chneukirchen/gitsum/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/chneukirchen/gitsum/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/chneukirchen/gitsum/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/chneukirchen/gitsum/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/chneukirchen/gitsum/statuses/{sha}', + languages_url: 'https://api.github.com/repos/chneukirchen/gitsum/languages', + stargazers_url: 'https://api.github.com/repos/chneukirchen/gitsum/stargazers', + contributors_url: 'https://api.github.com/repos/chneukirchen/gitsum/contributors', + subscribers_url: 'https://api.github.com/repos/chneukirchen/gitsum/subscribers', + subscription_url: 'https://api.github.com/repos/chneukirchen/gitsum/subscription', + commits_url: 'https://api.github.com/repos/chneukirchen/gitsum/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/chneukirchen/gitsum/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/chneukirchen/gitsum/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/chneukirchen/gitsum/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/chneukirchen/gitsum/contents/{+path}', + compare_url: 'https://api.github.com/repos/chneukirchen/gitsum/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/chneukirchen/gitsum/merges', + archive_url: 'https://api.github.com/repos/chneukirchen/gitsum/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/chneukirchen/gitsum/downloads', + issues_url: 'https://api.github.com/repos/chneukirchen/gitsum/issues{/number}', + pulls_url: 'https://api.github.com/repos/chneukirchen/gitsum/pulls{/number}', + milestones_url: 'https://api.github.com/repos/chneukirchen/gitsum/milestones{/number}', + notifications_url: 'https://api.github.com/repos/chneukirchen/gitsum/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/chneukirchen/gitsum/labels{/name}', + releases_url: 'https://api.github.com/repos/chneukirchen/gitsum/releases{/id}' }, + { id: 284, + name: 'ambition', + full_name: 'automatthew/ambition', + owner: + { login: 'automatthew', + id: 105, + avatar_url: 'https://avatars.githubusercontent.com/u/105?v=2', + gravatar_id: '491d5a2b6e9c9346e2d67da31a633457', + url: 'https://api.github.com/users/automatthew', + html_url: 'https://github.com/automatthew', + followers_url: 'https://api.github.com/users/automatthew/followers', + following_url: 'https://api.github.com/users/automatthew/following{/other_user}', + gists_url: 'https://api.github.com/users/automatthew/gists{/gist_id}', + starred_url: 'https://api.github.com/users/automatthew/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/automatthew/subscriptions', + organizations_url: 'https://api.github.com/users/automatthew/orgs', + repos_url: 'https://api.github.com/users/automatthew/repos', + events_url: 'https://api.github.com/users/automatthew/events{/privacy}', + received_events_url: 'https://api.github.com/users/automatthew/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/automatthew/ambition', + description: '', + fork: true, + url: 'https://api.github.com/repos/automatthew/ambition', + forks_url: 'https://api.github.com/repos/automatthew/ambition/forks', + keys_url: 'https://api.github.com/repos/automatthew/ambition/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/automatthew/ambition/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/automatthew/ambition/teams', + hooks_url: 'https://api.github.com/repos/automatthew/ambition/hooks', + issue_events_url: 'https://api.github.com/repos/automatthew/ambition/issues/events{/number}', + events_url: 'https://api.github.com/repos/automatthew/ambition/events', + assignees_url: 'https://api.github.com/repos/automatthew/ambition/assignees{/user}', + branches_url: 'https://api.github.com/repos/automatthew/ambition/branches{/branch}', + tags_url: 'https://api.github.com/repos/automatthew/ambition/tags', + blobs_url: 'https://api.github.com/repos/automatthew/ambition/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/automatthew/ambition/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/automatthew/ambition/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/automatthew/ambition/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/automatthew/ambition/statuses/{sha}', + languages_url: 'https://api.github.com/repos/automatthew/ambition/languages', + stargazers_url: 'https://api.github.com/repos/automatthew/ambition/stargazers', + contributors_url: 'https://api.github.com/repos/automatthew/ambition/contributors', + subscribers_url: 'https://api.github.com/repos/automatthew/ambition/subscribers', + subscription_url: 'https://api.github.com/repos/automatthew/ambition/subscription', + commits_url: 'https://api.github.com/repos/automatthew/ambition/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/automatthew/ambition/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/automatthew/ambition/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/automatthew/ambition/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/automatthew/ambition/contents/{+path}', + compare_url: 'https://api.github.com/repos/automatthew/ambition/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/automatthew/ambition/merges', + archive_url: 'https://api.github.com/repos/automatthew/ambition/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/automatthew/ambition/downloads', + issues_url: 'https://api.github.com/repos/automatthew/ambition/issues{/number}', + pulls_url: 'https://api.github.com/repos/automatthew/ambition/pulls{/number}', + milestones_url: 'https://api.github.com/repos/automatthew/ambition/milestones{/number}', + notifications_url: 'https://api.github.com/repos/automatthew/ambition/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/automatthew/ambition/labels{/name}', + releases_url: 'https://api.github.com/repos/automatthew/ambition/releases{/id}' }, + { id: 293, + name: 'sequel-model', + full_name: 'wayneeseguin/sequel-model', + owner: + { login: 'wayneeseguin', + id: 18, + avatar_url: 'https://avatars.githubusercontent.com/u/18?v=2', + gravatar_id: 'b9b5ff40232c1dfd61238c2a90467f84', + url: 'https://api.github.com/users/wayneeseguin', + html_url: 'https://github.com/wayneeseguin', + followers_url: 'https://api.github.com/users/wayneeseguin/followers', + following_url: 'https://api.github.com/users/wayneeseguin/following{/other_user}', + gists_url: 'https://api.github.com/users/wayneeseguin/gists{/gist_id}', + starred_url: 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/wayneeseguin/subscriptions', + organizations_url: 'https://api.github.com/users/wayneeseguin/orgs', + repos_url: 'https://api.github.com/users/wayneeseguin/repos', + events_url: 'https://api.github.com/users/wayneeseguin/events{/privacy}', + received_events_url: 'https://api.github.com/users/wayneeseguin/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/wayneeseguin/sequel-model', + description: 'Sequel::Model (No longer working on this project)', + fork: false, + url: 'https://api.github.com/repos/wayneeseguin/sequel-model', + forks_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/forks', + keys_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/teams', + hooks_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/hooks', + issue_events_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/issues/events{/number}', + events_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/events', + assignees_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/assignees{/user}', + branches_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/branches{/branch}', + tags_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/tags', + blobs_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/statuses/{sha}', + languages_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/languages', + stargazers_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/stargazers', + contributors_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/contributors', + subscribers_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/subscribers', + subscription_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/subscription', + commits_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/contents/{+path}', + compare_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/merges', + archive_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/downloads', + issues_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/issues{/number}', + pulls_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/pulls{/number}', + milestones_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/milestones{/number}', + notifications_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/labels{/name}', + releases_url: 'https://api.github.com/repos/wayneeseguin/sequel-model/releases{/id}' }, + { id: 305, + name: 'god', + full_name: 'kevinclark/god', + owner: + { login: 'kevinclark', + id: 20, + avatar_url: 'https://avatars.githubusercontent.com/u/20?v=2', + gravatar_id: '6f792b946bbf30845314eb501da5e040', + url: 'https://api.github.com/users/kevinclark', + html_url: 'https://github.com/kevinclark', + followers_url: 'https://api.github.com/users/kevinclark/followers', + following_url: 'https://api.github.com/users/kevinclark/following{/other_user}', + gists_url: 'https://api.github.com/users/kevinclark/gists{/gist_id}', + starred_url: 'https://api.github.com/users/kevinclark/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/kevinclark/subscriptions', + organizations_url: 'https://api.github.com/users/kevinclark/orgs', + repos_url: 'https://api.github.com/users/kevinclark/repos', + events_url: 'https://api.github.com/users/kevinclark/events{/privacy}', + received_events_url: 'https://api.github.com/users/kevinclark/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/kevinclark/god', + description: 'Ruby process monitor', + fork: true, + url: 'https://api.github.com/repos/kevinclark/god', + forks_url: 'https://api.github.com/repos/kevinclark/god/forks', + keys_url: 'https://api.github.com/repos/kevinclark/god/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/kevinclark/god/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/kevinclark/god/teams', + hooks_url: 'https://api.github.com/repos/kevinclark/god/hooks', + issue_events_url: 'https://api.github.com/repos/kevinclark/god/issues/events{/number}', + events_url: 'https://api.github.com/repos/kevinclark/god/events', + assignees_url: 'https://api.github.com/repos/kevinclark/god/assignees{/user}', + branches_url: 'https://api.github.com/repos/kevinclark/god/branches{/branch}', + tags_url: 'https://api.github.com/repos/kevinclark/god/tags', + blobs_url: 'https://api.github.com/repos/kevinclark/god/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/kevinclark/god/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/kevinclark/god/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/kevinclark/god/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/kevinclark/god/statuses/{sha}', + languages_url: 'https://api.github.com/repos/kevinclark/god/languages', + stargazers_url: 'https://api.github.com/repos/kevinclark/god/stargazers', + contributors_url: 'https://api.github.com/repos/kevinclark/god/contributors', + subscribers_url: 'https://api.github.com/repos/kevinclark/god/subscribers', + subscription_url: 'https://api.github.com/repos/kevinclark/god/subscription', + commits_url: 'https://api.github.com/repos/kevinclark/god/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/kevinclark/god/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/kevinclark/god/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/kevinclark/god/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/kevinclark/god/contents/{+path}', + compare_url: 'https://api.github.com/repos/kevinclark/god/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/kevinclark/god/merges', + archive_url: 'https://api.github.com/repos/kevinclark/god/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/kevinclark/god/downloads', + issues_url: 'https://api.github.com/repos/kevinclark/god/issues{/number}', + pulls_url: 'https://api.github.com/repos/kevinclark/god/pulls{/number}', + milestones_url: 'https://api.github.com/repos/kevinclark/god/milestones{/number}', + notifications_url: 'https://api.github.com/repos/kevinclark/god/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/kevinclark/god/labels{/name}', + releases_url: 'https://api.github.com/repos/kevinclark/god/releases{/id}' }, + { id: 307, + name: 'blerb-core', + full_name: 'hornbeck/blerb-core', + owner: + { login: 'hornbeck', + id: 49, + avatar_url: 'https://avatars.githubusercontent.com/u/49?v=2', + gravatar_id: '47093444301bbde90d0aef5fa5c3ac86', + url: 'https://api.github.com/users/hornbeck', + html_url: 'https://github.com/hornbeck', + followers_url: 'https://api.github.com/users/hornbeck/followers', + following_url: 'https://api.github.com/users/hornbeck/following{/other_user}', + gists_url: 'https://api.github.com/users/hornbeck/gists{/gist_id}', + starred_url: 'https://api.github.com/users/hornbeck/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/hornbeck/subscriptions', + organizations_url: 'https://api.github.com/users/hornbeck/orgs', + repos_url: 'https://api.github.com/users/hornbeck/repos', + events_url: 'https://api.github.com/users/hornbeck/events{/privacy}', + received_events_url: 'https://api.github.com/users/hornbeck/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/hornbeck/blerb-core', + description: 'blerb running on merb-core', + fork: false, + url: 'https://api.github.com/repos/hornbeck/blerb-core', + forks_url: 'https://api.github.com/repos/hornbeck/blerb-core/forks', + keys_url: 'https://api.github.com/repos/hornbeck/blerb-core/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/hornbeck/blerb-core/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/hornbeck/blerb-core/teams', + hooks_url: 'https://api.github.com/repos/hornbeck/blerb-core/hooks', + issue_events_url: 'https://api.github.com/repos/hornbeck/blerb-core/issues/events{/number}', + events_url: 'https://api.github.com/repos/hornbeck/blerb-core/events', + assignees_url: 'https://api.github.com/repos/hornbeck/blerb-core/assignees{/user}', + branches_url: 'https://api.github.com/repos/hornbeck/blerb-core/branches{/branch}', + tags_url: 'https://api.github.com/repos/hornbeck/blerb-core/tags', + blobs_url: 'https://api.github.com/repos/hornbeck/blerb-core/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/hornbeck/blerb-core/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/hornbeck/blerb-core/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/hornbeck/blerb-core/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/hornbeck/blerb-core/statuses/{sha}', + languages_url: 'https://api.github.com/repos/hornbeck/blerb-core/languages', + stargazers_url: 'https://api.github.com/repos/hornbeck/blerb-core/stargazers', + contributors_url: 'https://api.github.com/repos/hornbeck/blerb-core/contributors', + subscribers_url: 'https://api.github.com/repos/hornbeck/blerb-core/subscribers', + subscription_url: 'https://api.github.com/repos/hornbeck/blerb-core/subscription', + commits_url: 'https://api.github.com/repos/hornbeck/blerb-core/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/hornbeck/blerb-core/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/hornbeck/blerb-core/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/hornbeck/blerb-core/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/hornbeck/blerb-core/contents/{+path}', + compare_url: 'https://api.github.com/repos/hornbeck/blerb-core/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/hornbeck/blerb-core/merges', + archive_url: 'https://api.github.com/repos/hornbeck/blerb-core/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/hornbeck/blerb-core/downloads', + issues_url: 'https://api.github.com/repos/hornbeck/blerb-core/issues{/number}', + pulls_url: 'https://api.github.com/repos/hornbeck/blerb-core/pulls{/number}', + milestones_url: 'https://api.github.com/repos/hornbeck/blerb-core/milestones{/number}', + notifications_url: 'https://api.github.com/repos/hornbeck/blerb-core/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/hornbeck/blerb-core/labels{/name}', + releases_url: 'https://api.github.com/repos/hornbeck/blerb-core/releases{/id}' }, + { id: 312, + name: 'django-mptt', + full_name: 'brosner/django-mptt', + owner: + { login: 'brosner', + id: 124, + avatar_url: 'https://avatars.githubusercontent.com/u/124?v=2', + gravatar_id: 'b7472bc7aa45c70641c299e9408b78ab', + url: 'https://api.github.com/users/brosner', + html_url: 'https://github.com/brosner', + followers_url: 'https://api.github.com/users/brosner/followers', + following_url: 'https://api.github.com/users/brosner/following{/other_user}', + gists_url: 'https://api.github.com/users/brosner/gists{/gist_id}', + starred_url: 'https://api.github.com/users/brosner/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/brosner/subscriptions', + organizations_url: 'https://api.github.com/users/brosner/orgs', + repos_url: 'https://api.github.com/users/brosner/repos', + events_url: 'https://api.github.com/users/brosner/events{/privacy}', + received_events_url: 'https://api.github.com/users/brosner/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/brosner/django-mptt', + description: 'utilities for implementing a modified pre-order traversal tree in django', + fork: true, + url: 'https://api.github.com/repos/brosner/django-mptt', + forks_url: 'https://api.github.com/repos/brosner/django-mptt/forks', + keys_url: 'https://api.github.com/repos/brosner/django-mptt/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/brosner/django-mptt/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/brosner/django-mptt/teams', + hooks_url: 'https://api.github.com/repos/brosner/django-mptt/hooks', + issue_events_url: 'https://api.github.com/repos/brosner/django-mptt/issues/events{/number}', + events_url: 'https://api.github.com/repos/brosner/django-mptt/events', + assignees_url: 'https://api.github.com/repos/brosner/django-mptt/assignees{/user}', + branches_url: 'https://api.github.com/repos/brosner/django-mptt/branches{/branch}', + tags_url: 'https://api.github.com/repos/brosner/django-mptt/tags', + blobs_url: 'https://api.github.com/repos/brosner/django-mptt/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/brosner/django-mptt/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/brosner/django-mptt/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/brosner/django-mptt/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/brosner/django-mptt/statuses/{sha}', + languages_url: 'https://api.github.com/repos/brosner/django-mptt/languages', + stargazers_url: 'https://api.github.com/repos/brosner/django-mptt/stargazers', + contributors_url: 'https://api.github.com/repos/brosner/django-mptt/contributors', + subscribers_url: 'https://api.github.com/repos/brosner/django-mptt/subscribers', + subscription_url: 'https://api.github.com/repos/brosner/django-mptt/subscription', + commits_url: 'https://api.github.com/repos/brosner/django-mptt/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/brosner/django-mptt/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/brosner/django-mptt/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/brosner/django-mptt/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/brosner/django-mptt/contents/{+path}', + compare_url: 'https://api.github.com/repos/brosner/django-mptt/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/brosner/django-mptt/merges', + archive_url: 'https://api.github.com/repos/brosner/django-mptt/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/brosner/django-mptt/downloads', + issues_url: 'https://api.github.com/repos/brosner/django-mptt/issues{/number}', + pulls_url: 'https://api.github.com/repos/brosner/django-mptt/pulls{/number}', + milestones_url: 'https://api.github.com/repos/brosner/django-mptt/milestones{/number}', + notifications_url: 'https://api.github.com/repos/brosner/django-mptt/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/brosner/django-mptt/labels{/name}', + releases_url: 'https://api.github.com/repos/brosner/django-mptt/releases{/id}' }, + { id: 314, + name: 'bus-scheme', + full_name: 'technomancy/bus-scheme', + owner: + { login: 'technomancy', + id: 141, + avatar_url: 'https://avatars.githubusercontent.com/u/141?v=2', + gravatar_id: '22788ec68b2aee512f8f4c5d8ae819ae', + url: 'https://api.github.com/users/technomancy', + html_url: 'https://github.com/technomancy', + followers_url: 'https://api.github.com/users/technomancy/followers', + following_url: 'https://api.github.com/users/technomancy/following{/other_user}', + gists_url: 'https://api.github.com/users/technomancy/gists{/gist_id}', + starred_url: 'https://api.github.com/users/technomancy/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/technomancy/subscriptions', + organizations_url: 'https://api.github.com/users/technomancy/orgs', + repos_url: 'https://api.github.com/users/technomancy/repos', + events_url: 'https://api.github.com/users/technomancy/events{/privacy}', + received_events_url: 'https://api.github.com/users/technomancy/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/technomancy/bus-scheme', + description: 'a Scheme written in Ruby, but implemented on the bus!', + fork: false, + url: 'https://api.github.com/repos/technomancy/bus-scheme', + forks_url: 'https://api.github.com/repos/technomancy/bus-scheme/forks', + keys_url: 'https://api.github.com/repos/technomancy/bus-scheme/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/technomancy/bus-scheme/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/technomancy/bus-scheme/teams', + hooks_url: 'https://api.github.com/repos/technomancy/bus-scheme/hooks', + issue_events_url: 'https://api.github.com/repos/technomancy/bus-scheme/issues/events{/number}', + events_url: 'https://api.github.com/repos/technomancy/bus-scheme/events', + assignees_url: 'https://api.github.com/repos/technomancy/bus-scheme/assignees{/user}', + branches_url: 'https://api.github.com/repos/technomancy/bus-scheme/branches{/branch}', + tags_url: 'https://api.github.com/repos/technomancy/bus-scheme/tags', + blobs_url: 'https://api.github.com/repos/technomancy/bus-scheme/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/technomancy/bus-scheme/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/technomancy/bus-scheme/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/technomancy/bus-scheme/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/technomancy/bus-scheme/statuses/{sha}', + languages_url: 'https://api.github.com/repos/technomancy/bus-scheme/languages', + stargazers_url: 'https://api.github.com/repos/technomancy/bus-scheme/stargazers', + contributors_url: 'https://api.github.com/repos/technomancy/bus-scheme/contributors', + subscribers_url: 'https://api.github.com/repos/technomancy/bus-scheme/subscribers', + subscription_url: 'https://api.github.com/repos/technomancy/bus-scheme/subscription', + commits_url: 'https://api.github.com/repos/technomancy/bus-scheme/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/technomancy/bus-scheme/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/technomancy/bus-scheme/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/technomancy/bus-scheme/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/technomancy/bus-scheme/contents/{+path}', + compare_url: 'https://api.github.com/repos/technomancy/bus-scheme/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/technomancy/bus-scheme/merges', + archive_url: 'https://api.github.com/repos/technomancy/bus-scheme/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/technomancy/bus-scheme/downloads', + issues_url: 'https://api.github.com/repos/technomancy/bus-scheme/issues{/number}', + pulls_url: 'https://api.github.com/repos/technomancy/bus-scheme/pulls{/number}', + milestones_url: 'https://api.github.com/repos/technomancy/bus-scheme/milestones{/number}', + notifications_url: 'https://api.github.com/repos/technomancy/bus-scheme/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/technomancy/bus-scheme/labels{/name}', + releases_url: 'https://api.github.com/repos/technomancy/bus-scheme/releases{/id}' }, + { id: 319, + name: 'javascript-bits', + full_name: 'Caged/javascript-bits', + owner: + { login: 'Caged', + id: 25, + avatar_url: 'https://avatars.githubusercontent.com/u/25?v=2', + gravatar_id: '97c3a8eea9b7eaa9e1e93ea3cd47399f', + url: 'https://api.github.com/users/Caged', + html_url: 'https://github.com/Caged', + followers_url: 'https://api.github.com/users/Caged/followers', + following_url: 'https://api.github.com/users/Caged/following{/other_user}', + gists_url: 'https://api.github.com/users/Caged/gists{/gist_id}', + starred_url: 'https://api.github.com/users/Caged/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/Caged/subscriptions', + organizations_url: 'https://api.github.com/users/Caged/orgs', + repos_url: 'https://api.github.com/users/Caged/repos', + events_url: 'https://api.github.com/users/Caged/events{/privacy}', + received_events_url: 'https://api.github.com/users/Caged/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/Caged/javascript-bits', + description: 'Useful pieces of JavaScript. Some old, some new.', + fork: false, + url: 'https://api.github.com/repos/Caged/javascript-bits', + forks_url: 'https://api.github.com/repos/Caged/javascript-bits/forks', + keys_url: 'https://api.github.com/repos/Caged/javascript-bits/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/Caged/javascript-bits/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/Caged/javascript-bits/teams', + hooks_url: 'https://api.github.com/repos/Caged/javascript-bits/hooks', + issue_events_url: 'https://api.github.com/repos/Caged/javascript-bits/issues/events{/number}', + events_url: 'https://api.github.com/repos/Caged/javascript-bits/events', + assignees_url: 'https://api.github.com/repos/Caged/javascript-bits/assignees{/user}', + branches_url: 'https://api.github.com/repos/Caged/javascript-bits/branches{/branch}', + tags_url: 'https://api.github.com/repos/Caged/javascript-bits/tags', + blobs_url: 'https://api.github.com/repos/Caged/javascript-bits/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/Caged/javascript-bits/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/Caged/javascript-bits/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/Caged/javascript-bits/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/Caged/javascript-bits/statuses/{sha}', + languages_url: 'https://api.github.com/repos/Caged/javascript-bits/languages', + stargazers_url: 'https://api.github.com/repos/Caged/javascript-bits/stargazers', + contributors_url: 'https://api.github.com/repos/Caged/javascript-bits/contributors', + subscribers_url: 'https://api.github.com/repos/Caged/javascript-bits/subscribers', + subscription_url: 'https://api.github.com/repos/Caged/javascript-bits/subscription', + commits_url: 'https://api.github.com/repos/Caged/javascript-bits/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/Caged/javascript-bits/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/Caged/javascript-bits/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/Caged/javascript-bits/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/Caged/javascript-bits/contents/{+path}', + compare_url: 'https://api.github.com/repos/Caged/javascript-bits/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/Caged/javascript-bits/merges', + archive_url: 'https://api.github.com/repos/Caged/javascript-bits/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/Caged/javascript-bits/downloads', + issues_url: 'https://api.github.com/repos/Caged/javascript-bits/issues{/number}', + pulls_url: 'https://api.github.com/repos/Caged/javascript-bits/pulls{/number}', + milestones_url: 'https://api.github.com/repos/Caged/javascript-bits/milestones{/number}', + notifications_url: 'https://api.github.com/repos/Caged/javascript-bits/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/Caged/javascript-bits/labels{/name}', + releases_url: 'https://api.github.com/repos/Caged/javascript-bits/releases{/id}' }, + { id: 320, + name: 'groomlake', + full_name: 'Caged/groomlake', + owner: + { login: 'Caged', + id: 25, + avatar_url: 'https://avatars.githubusercontent.com/u/25?v=2', + gravatar_id: '97c3a8eea9b7eaa9e1e93ea3cd47399f', + url: 'https://api.github.com/users/Caged', + html_url: 'https://github.com/Caged', + followers_url: 'https://api.github.com/users/Caged/followers', + following_url: 'https://api.github.com/users/Caged/following{/other_user}', + gists_url: 'https://api.github.com/users/Caged/gists{/gist_id}', + starred_url: 'https://api.github.com/users/Caged/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/Caged/subscriptions', + organizations_url: 'https://api.github.com/users/Caged/orgs', + repos_url: 'https://api.github.com/users/Caged/repos', + events_url: 'https://api.github.com/users/Caged/events{/privacy}', + received_events_url: 'https://api.github.com/users/Caged/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/Caged/groomlake', + description: 'Ruby parsers for some Adobe file formats.', + fork: false, + url: 'https://api.github.com/repos/Caged/groomlake', + forks_url: 'https://api.github.com/repos/Caged/groomlake/forks', + keys_url: 'https://api.github.com/repos/Caged/groomlake/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/Caged/groomlake/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/Caged/groomlake/teams', + hooks_url: 'https://api.github.com/repos/Caged/groomlake/hooks', + issue_events_url: 'https://api.github.com/repos/Caged/groomlake/issues/events{/number}', + events_url: 'https://api.github.com/repos/Caged/groomlake/events', + assignees_url: 'https://api.github.com/repos/Caged/groomlake/assignees{/user}', + branches_url: 'https://api.github.com/repos/Caged/groomlake/branches{/branch}', + tags_url: 'https://api.github.com/repos/Caged/groomlake/tags', + blobs_url: 'https://api.github.com/repos/Caged/groomlake/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/Caged/groomlake/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/Caged/groomlake/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/Caged/groomlake/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/Caged/groomlake/statuses/{sha}', + languages_url: 'https://api.github.com/repos/Caged/groomlake/languages', + stargazers_url: 'https://api.github.com/repos/Caged/groomlake/stargazers', + contributors_url: 'https://api.github.com/repos/Caged/groomlake/contributors', + subscribers_url: 'https://api.github.com/repos/Caged/groomlake/subscribers', + subscription_url: 'https://api.github.com/repos/Caged/groomlake/subscription', + commits_url: 'https://api.github.com/repos/Caged/groomlake/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/Caged/groomlake/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/Caged/groomlake/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/Caged/groomlake/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/Caged/groomlake/contents/{+path}', + compare_url: 'https://api.github.com/repos/Caged/groomlake/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/Caged/groomlake/merges', + archive_url: 'https://api.github.com/repos/Caged/groomlake/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/Caged/groomlake/downloads', + issues_url: 'https://api.github.com/repos/Caged/groomlake/issues{/number}', + pulls_url: 'https://api.github.com/repos/Caged/groomlake/pulls{/number}', + milestones_url: 'https://api.github.com/repos/Caged/groomlake/milestones{/number}', + notifications_url: 'https://api.github.com/repos/Caged/groomlake/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/Caged/groomlake/labels{/name}', + releases_url: 'https://api.github.com/repos/Caged/groomlake/releases{/id}' }, + { id: 322, + name: 'forgery', + full_name: 'sevenwire/forgery', + owner: + { login: 'sevenwire', + id: 150, + avatar_url: 'https://avatars.githubusercontent.com/u/150?v=2', + gravatar_id: '2d699571a445b9a9205779628fe9a818', + url: 'https://api.github.com/users/sevenwire', + html_url: 'https://github.com/sevenwire', + followers_url: 'https://api.github.com/users/sevenwire/followers', + following_url: 'https://api.github.com/users/sevenwire/following{/other_user}', + gists_url: 'https://api.github.com/users/sevenwire/gists{/gist_id}', + starred_url: 'https://api.github.com/users/sevenwire/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/sevenwire/subscriptions', + organizations_url: 'https://api.github.com/users/sevenwire/orgs', + repos_url: 'https://api.github.com/users/sevenwire/repos', + events_url: 'https://api.github.com/users/sevenwire/events{/privacy}', + received_events_url: 'https://api.github.com/users/sevenwire/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/sevenwire/forgery', + description: 'Easy and customizable generation of forged data.', + fork: false, + url: 'https://api.github.com/repos/sevenwire/forgery', + forks_url: 'https://api.github.com/repos/sevenwire/forgery/forks', + keys_url: 'https://api.github.com/repos/sevenwire/forgery/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/sevenwire/forgery/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/sevenwire/forgery/teams', + hooks_url: 'https://api.github.com/repos/sevenwire/forgery/hooks', + issue_events_url: 'https://api.github.com/repos/sevenwire/forgery/issues/events{/number}', + events_url: 'https://api.github.com/repos/sevenwire/forgery/events', + assignees_url: 'https://api.github.com/repos/sevenwire/forgery/assignees{/user}', + branches_url: 'https://api.github.com/repos/sevenwire/forgery/branches{/branch}', + tags_url: 'https://api.github.com/repos/sevenwire/forgery/tags', + blobs_url: 'https://api.github.com/repos/sevenwire/forgery/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/sevenwire/forgery/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/sevenwire/forgery/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/sevenwire/forgery/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/sevenwire/forgery/statuses/{sha}', + languages_url: 'https://api.github.com/repos/sevenwire/forgery/languages', + stargazers_url: 'https://api.github.com/repos/sevenwire/forgery/stargazers', + contributors_url: 'https://api.github.com/repos/sevenwire/forgery/contributors', + subscribers_url: 'https://api.github.com/repos/sevenwire/forgery/subscribers', + subscription_url: 'https://api.github.com/repos/sevenwire/forgery/subscription', + commits_url: 'https://api.github.com/repos/sevenwire/forgery/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/sevenwire/forgery/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/sevenwire/forgery/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/sevenwire/forgery/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/sevenwire/forgery/contents/{+path}', + compare_url: 'https://api.github.com/repos/sevenwire/forgery/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/sevenwire/forgery/merges', + archive_url: 'https://api.github.com/repos/sevenwire/forgery/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/sevenwire/forgery/downloads', + issues_url: 'https://api.github.com/repos/sevenwire/forgery/issues{/number}', + pulls_url: 'https://api.github.com/repos/sevenwire/forgery/pulls{/number}', + milestones_url: 'https://api.github.com/repos/sevenwire/forgery/milestones{/number}', + notifications_url: 'https://api.github.com/repos/sevenwire/forgery/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/sevenwire/forgery/labels{/name}', + releases_url: 'https://api.github.com/repos/sevenwire/forgery/releases{/id}' }, + { id: 324, + name: 'ambitious-sphinx', + full_name: 'technicalpickles/ambitious-sphinx', + owner: + { login: 'technicalpickles', + id: 159, + avatar_url: 'https://avatars.githubusercontent.com/u/159?v=2', + gravatar_id: '1c1aabc1abed5cce37b192dd00f0f28c', + url: 'https://api.github.com/users/technicalpickles', + html_url: 'https://github.com/technicalpickles', + followers_url: 'https://api.github.com/users/technicalpickles/followers', + following_url: 'https://api.github.com/users/technicalpickles/following{/other_user}', + gists_url: 'https://api.github.com/users/technicalpickles/gists{/gist_id}', + starred_url: 'https://api.github.com/users/technicalpickles/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/technicalpickles/subscriptions', + organizations_url: 'https://api.github.com/users/technicalpickles/orgs', + repos_url: 'https://api.github.com/users/technicalpickles/repos', + events_url: 'https://api.github.com/users/technicalpickles/events{/privacy}', + received_events_url: 'https://api.github.com/users/technicalpickles/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/technicalpickles/ambitious-sphinx', + description: 'Ambition adapter for Sphinx', + fork: false, + url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx', + forks_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/forks', + keys_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/teams', + hooks_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/hooks', + issue_events_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/events{/number}', + events_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/events', + assignees_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/assignees{/user}', + branches_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/branches{/branch}', + tags_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/tags', + blobs_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/statuses/{sha}', + languages_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/languages', + stargazers_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/stargazers', + contributors_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/contributors', + subscribers_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscribers', + subscription_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscription', + commits_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/contents/{+path}', + compare_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/merges', + archive_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/downloads', + issues_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues{/number}', + pulls_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/pulls{/number}', + milestones_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/milestones{/number}', + notifications_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/labels{/name}', + releases_url: 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/releases{/id}' }, + { id: 329, + name: 'soup', + full_name: 'lazyatom/soup', + owner: + { login: 'lazyatom', + id: 145, + avatar_url: 'https://avatars.githubusercontent.com/u/145?v=2', + gravatar_id: 'acd62030df551952268e84c8fff26a5b', + url: 'https://api.github.com/users/lazyatom', + html_url: 'https://github.com/lazyatom', + followers_url: 'https://api.github.com/users/lazyatom/followers', + following_url: 'https://api.github.com/users/lazyatom/following{/other_user}', + gists_url: 'https://api.github.com/users/lazyatom/gists{/gist_id}', + starred_url: 'https://api.github.com/users/lazyatom/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/lazyatom/subscriptions', + organizations_url: 'https://api.github.com/users/lazyatom/orgs', + repos_url: 'https://api.github.com/users/lazyatom/repos', + events_url: 'https://api.github.com/users/lazyatom/events{/privacy}', + received_events_url: 'https://api.github.com/users/lazyatom/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/lazyatom/soup', + description: 'I suppose it\'s a document database. Or a tuple store. But really, it\'s just data sloshing around, waiting to be used.', + fork: false, + url: 'https://api.github.com/repos/lazyatom/soup', + forks_url: 'https://api.github.com/repos/lazyatom/soup/forks', + keys_url: 'https://api.github.com/repos/lazyatom/soup/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/lazyatom/soup/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/lazyatom/soup/teams', + hooks_url: 'https://api.github.com/repos/lazyatom/soup/hooks', + issue_events_url: 'https://api.github.com/repos/lazyatom/soup/issues/events{/number}', + events_url: 'https://api.github.com/repos/lazyatom/soup/events', + assignees_url: 'https://api.github.com/repos/lazyatom/soup/assignees{/user}', + branches_url: 'https://api.github.com/repos/lazyatom/soup/branches{/branch}', + tags_url: 'https://api.github.com/repos/lazyatom/soup/tags', + blobs_url: 'https://api.github.com/repos/lazyatom/soup/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/lazyatom/soup/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/lazyatom/soup/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/lazyatom/soup/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/lazyatom/soup/statuses/{sha}', + languages_url: 'https://api.github.com/repos/lazyatom/soup/languages', + stargazers_url: 'https://api.github.com/repos/lazyatom/soup/stargazers', + contributors_url: 'https://api.github.com/repos/lazyatom/soup/contributors', + subscribers_url: 'https://api.github.com/repos/lazyatom/soup/subscribers', + subscription_url: 'https://api.github.com/repos/lazyatom/soup/subscription', + commits_url: 'https://api.github.com/repos/lazyatom/soup/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/lazyatom/soup/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/lazyatom/soup/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/lazyatom/soup/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/lazyatom/soup/contents/{+path}', + compare_url: 'https://api.github.com/repos/lazyatom/soup/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/lazyatom/soup/merges', + archive_url: 'https://api.github.com/repos/lazyatom/soup/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/lazyatom/soup/downloads', + issues_url: 'https://api.github.com/repos/lazyatom/soup/issues{/number}', + pulls_url: 'https://api.github.com/repos/lazyatom/soup/pulls{/number}', + milestones_url: 'https://api.github.com/repos/lazyatom/soup/milestones{/number}', + notifications_url: 'https://api.github.com/repos/lazyatom/soup/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/lazyatom/soup/labels{/name}', + releases_url: 'https://api.github.com/repos/lazyatom/soup/releases{/id}' }, + { id: 332, + name: 'rails', + full_name: 'josh/rails', + owner: + { login: 'josh', + id: 137, + avatar_url: 'https://avatars.githubusercontent.com/u/137?v=2', + gravatar_id: 'bbe5dc8dcf248706525ab76f46185520', + url: 'https://api.github.com/users/josh', + html_url: 'https://github.com/josh', + followers_url: 'https://api.github.com/users/josh/followers', + following_url: 'https://api.github.com/users/josh/following{/other_user}', + gists_url: 'https://api.github.com/users/josh/gists{/gist_id}', + starred_url: 'https://api.github.com/users/josh/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/josh/subscriptions', + organizations_url: 'https://api.github.com/users/josh/orgs', + repos_url: 'https://api.github.com/users/josh/repos', + events_url: 'https://api.github.com/users/josh/events{/privacy}', + received_events_url: 'https://api.github.com/users/josh/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/josh/rails', + description: 'Ruby on Rails', + fork: true, + url: 'https://api.github.com/repos/josh/rails', + forks_url: 'https://api.github.com/repos/josh/rails/forks', + keys_url: 'https://api.github.com/repos/josh/rails/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/josh/rails/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/josh/rails/teams', + hooks_url: 'https://api.github.com/repos/josh/rails/hooks', + issue_events_url: 'https://api.github.com/repos/josh/rails/issues/events{/number}', + events_url: 'https://api.github.com/repos/josh/rails/events', + assignees_url: 'https://api.github.com/repos/josh/rails/assignees{/user}', + branches_url: 'https://api.github.com/repos/josh/rails/branches{/branch}', + tags_url: 'https://api.github.com/repos/josh/rails/tags', + blobs_url: 'https://api.github.com/repos/josh/rails/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/josh/rails/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/josh/rails/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/josh/rails/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/josh/rails/statuses/{sha}', + languages_url: 'https://api.github.com/repos/josh/rails/languages', + stargazers_url: 'https://api.github.com/repos/josh/rails/stargazers', + contributors_url: 'https://api.github.com/repos/josh/rails/contributors', + subscribers_url: 'https://api.github.com/repos/josh/rails/subscribers', + subscription_url: 'https://api.github.com/repos/josh/rails/subscription', + commits_url: 'https://api.github.com/repos/josh/rails/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/josh/rails/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/josh/rails/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/josh/rails/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/josh/rails/contents/{+path}', + compare_url: 'https://api.github.com/repos/josh/rails/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/josh/rails/merges', + archive_url: 'https://api.github.com/repos/josh/rails/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/josh/rails/downloads', + issues_url: 'https://api.github.com/repos/josh/rails/issues{/number}', + pulls_url: 'https://api.github.com/repos/josh/rails/pulls{/number}', + milestones_url: 'https://api.github.com/repos/josh/rails/milestones{/number}', + notifications_url: 'https://api.github.com/repos/josh/rails/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/josh/rails/labels{/name}', + releases_url: 'https://api.github.com/repos/josh/rails/releases{/id}' }, + { id: 334, + name: 'backpacking', + full_name: 'cdcarter/backpacking', + owner: + { login: 'cdcarter', + id: 164, + avatar_url: 'https://avatars.githubusercontent.com/u/164?v=2', + gravatar_id: '96931bfe0c2948f47a98e15ae52e5637', + url: 'https://api.github.com/users/cdcarter', + html_url: 'https://github.com/cdcarter', + followers_url: 'https://api.github.com/users/cdcarter/followers', + following_url: 'https://api.github.com/users/cdcarter/following{/other_user}', + gists_url: 'https://api.github.com/users/cdcarter/gists{/gist_id}', + starred_url: 'https://api.github.com/users/cdcarter/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/cdcarter/subscriptions', + organizations_url: 'https://api.github.com/users/cdcarter/orgs', + repos_url: 'https://api.github.com/users/cdcarter/repos', + events_url: 'https://api.github.com/users/cdcarter/events{/privacy}', + received_events_url: 'https://api.github.com/users/cdcarter/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/cdcarter/backpacking', + description: 'An Io web framework of sorts', + fork: false, + url: 'https://api.github.com/repos/cdcarter/backpacking', + forks_url: 'https://api.github.com/repos/cdcarter/backpacking/forks', + keys_url: 'https://api.github.com/repos/cdcarter/backpacking/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/cdcarter/backpacking/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/cdcarter/backpacking/teams', + hooks_url: 'https://api.github.com/repos/cdcarter/backpacking/hooks', + issue_events_url: 'https://api.github.com/repos/cdcarter/backpacking/issues/events{/number}', + events_url: 'https://api.github.com/repos/cdcarter/backpacking/events', + assignees_url: 'https://api.github.com/repos/cdcarter/backpacking/assignees{/user}', + branches_url: 'https://api.github.com/repos/cdcarter/backpacking/branches{/branch}', + tags_url: 'https://api.github.com/repos/cdcarter/backpacking/tags', + blobs_url: 'https://api.github.com/repos/cdcarter/backpacking/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/cdcarter/backpacking/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/cdcarter/backpacking/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/cdcarter/backpacking/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/cdcarter/backpacking/statuses/{sha}', + languages_url: 'https://api.github.com/repos/cdcarter/backpacking/languages', + stargazers_url: 'https://api.github.com/repos/cdcarter/backpacking/stargazers', + contributors_url: 'https://api.github.com/repos/cdcarter/backpacking/contributors', + subscribers_url: 'https://api.github.com/repos/cdcarter/backpacking/subscribers', + subscription_url: 'https://api.github.com/repos/cdcarter/backpacking/subscription', + commits_url: 'https://api.github.com/repos/cdcarter/backpacking/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/cdcarter/backpacking/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/cdcarter/backpacking/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/cdcarter/backpacking/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/cdcarter/backpacking/contents/{+path}', + compare_url: 'https://api.github.com/repos/cdcarter/backpacking/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/cdcarter/backpacking/merges', + archive_url: 'https://api.github.com/repos/cdcarter/backpacking/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/cdcarter/backpacking/downloads', + issues_url: 'https://api.github.com/repos/cdcarter/backpacking/issues{/number}', + pulls_url: 'https://api.github.com/repos/cdcarter/backpacking/pulls{/number}', + milestones_url: 'https://api.github.com/repos/cdcarter/backpacking/milestones{/number}', + notifications_url: 'https://api.github.com/repos/cdcarter/backpacking/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/cdcarter/backpacking/labels{/name}', + releases_url: 'https://api.github.com/repos/cdcarter/backpacking/releases{/id}' }, + { id: 339, + name: 'capsize', + full_name: 'jnewland/capsize', + owner: + { login: 'jnewland', + id: 47, + avatar_url: 'https://avatars.githubusercontent.com/u/47?v=2', + gravatar_id: 'f317439da90c3176adc8938bcf5181ff', + url: 'https://api.github.com/users/jnewland', + html_url: 'https://github.com/jnewland', + followers_url: 'https://api.github.com/users/jnewland/followers', + following_url: 'https://api.github.com/users/jnewland/following{/other_user}', + gists_url: 'https://api.github.com/users/jnewland/gists{/gist_id}', + starred_url: 'https://api.github.com/users/jnewland/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/jnewland/subscriptions', + organizations_url: 'https://api.github.com/users/jnewland/orgs', + repos_url: 'https://api.github.com/users/jnewland/repos', + events_url: 'https://api.github.com/users/jnewland/events{/privacy}', + received_events_url: 'https://api.github.com/users/jnewland/received_events', + type: 'User', + site_admin: true }, + private: false, + html_url: 'https://github.com/jnewland/capsize', + description: 'A Capistrano extension for managing and running your app on Amazon EC2.', + fork: false, + url: 'https://api.github.com/repos/jnewland/capsize', + forks_url: 'https://api.github.com/repos/jnewland/capsize/forks', + keys_url: 'https://api.github.com/repos/jnewland/capsize/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/jnewland/capsize/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/jnewland/capsize/teams', + hooks_url: 'https://api.github.com/repos/jnewland/capsize/hooks', + issue_events_url: 'https://api.github.com/repos/jnewland/capsize/issues/events{/number}', + events_url: 'https://api.github.com/repos/jnewland/capsize/events', + assignees_url: 'https://api.github.com/repos/jnewland/capsize/assignees{/user}', + branches_url: 'https://api.github.com/repos/jnewland/capsize/branches{/branch}', + tags_url: 'https://api.github.com/repos/jnewland/capsize/tags', + blobs_url: 'https://api.github.com/repos/jnewland/capsize/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/jnewland/capsize/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/jnewland/capsize/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/jnewland/capsize/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/jnewland/capsize/statuses/{sha}', + languages_url: 'https://api.github.com/repos/jnewland/capsize/languages', + stargazers_url: 'https://api.github.com/repos/jnewland/capsize/stargazers', + contributors_url: 'https://api.github.com/repos/jnewland/capsize/contributors', + subscribers_url: 'https://api.github.com/repos/jnewland/capsize/subscribers', + subscription_url: 'https://api.github.com/repos/jnewland/capsize/subscription', + commits_url: 'https://api.github.com/repos/jnewland/capsize/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/jnewland/capsize/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/jnewland/capsize/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/jnewland/capsize/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/jnewland/capsize/contents/{+path}', + compare_url: 'https://api.github.com/repos/jnewland/capsize/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/jnewland/capsize/merges', + archive_url: 'https://api.github.com/repos/jnewland/capsize/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/jnewland/capsize/downloads', + issues_url: 'https://api.github.com/repos/jnewland/capsize/issues{/number}', + pulls_url: 'https://api.github.com/repos/jnewland/capsize/pulls{/number}', + milestones_url: 'https://api.github.com/repos/jnewland/capsize/milestones{/number}', + notifications_url: 'https://api.github.com/repos/jnewland/capsize/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/jnewland/capsize/labels{/name}', + releases_url: 'https://api.github.com/repos/jnewland/capsize/releases{/id}' }, + { id: 351, + name: 'starling', + full_name: 'bs/starling', + owner: + { login: 'bs', + id: 68, + avatar_url: 'https://avatars.githubusercontent.com/u/68?v=2', + gravatar_id: 'e9abc07e644756d917e9de193236fd39', + url: 'https://api.github.com/users/bs', + html_url: 'https://github.com/bs', + followers_url: 'https://api.github.com/users/bs/followers', + following_url: 'https://api.github.com/users/bs/following{/other_user}', + gists_url: 'https://api.github.com/users/bs/gists{/gist_id}', + starred_url: 'https://api.github.com/users/bs/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/bs/subscriptions', + organizations_url: 'https://api.github.com/users/bs/orgs', + repos_url: 'https://api.github.com/users/bs/repos', + events_url: 'https://api.github.com/users/bs/events{/privacy}', + received_events_url: 'https://api.github.com/users/bs/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/bs/starling', + description: 'Starling Message Queue', + fork: false, + url: 'https://api.github.com/repos/bs/starling', + forks_url: 'https://api.github.com/repos/bs/starling/forks', + keys_url: 'https://api.github.com/repos/bs/starling/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/bs/starling/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/bs/starling/teams', + hooks_url: 'https://api.github.com/repos/bs/starling/hooks', + issue_events_url: 'https://api.github.com/repos/bs/starling/issues/events{/number}', + events_url: 'https://api.github.com/repos/bs/starling/events', + assignees_url: 'https://api.github.com/repos/bs/starling/assignees{/user}', + branches_url: 'https://api.github.com/repos/bs/starling/branches{/branch}', + tags_url: 'https://api.github.com/repos/bs/starling/tags', + blobs_url: 'https://api.github.com/repos/bs/starling/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/bs/starling/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/bs/starling/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/bs/starling/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/bs/starling/statuses/{sha}', + languages_url: 'https://api.github.com/repos/bs/starling/languages', + stargazers_url: 'https://api.github.com/repos/bs/starling/stargazers', + contributors_url: 'https://api.github.com/repos/bs/starling/contributors', + subscribers_url: 'https://api.github.com/repos/bs/starling/subscribers', + subscription_url: 'https://api.github.com/repos/bs/starling/subscription', + commits_url: 'https://api.github.com/repos/bs/starling/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/bs/starling/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/bs/starling/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/bs/starling/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/bs/starling/contents/{+path}', + compare_url: 'https://api.github.com/repos/bs/starling/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/bs/starling/merges', + archive_url: 'https://api.github.com/repos/bs/starling/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/bs/starling/downloads', + issues_url: 'https://api.github.com/repos/bs/starling/issues{/number}', + pulls_url: 'https://api.github.com/repos/bs/starling/pulls{/number}', + milestones_url: 'https://api.github.com/repos/bs/starling/milestones{/number}', + notifications_url: 'https://api.github.com/repos/bs/starling/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/bs/starling/labels{/name}', + releases_url: 'https://api.github.com/repos/bs/starling/releases{/id}' }, + { id: 360, + name: 'ape', + full_name: 'sr/ape', + owner: + { login: 'sr', + id: 90, + avatar_url: 'https://avatars.githubusercontent.com/u/90?v=2', + gravatar_id: '8e0adf6f8274375b90a180d256d73bad', + url: 'https://api.github.com/users/sr', + html_url: 'https://github.com/sr', + followers_url: 'https://api.github.com/users/sr/followers', + following_url: 'https://api.github.com/users/sr/following{/other_user}', + gists_url: 'https://api.github.com/users/sr/gists{/gist_id}', + starred_url: 'https://api.github.com/users/sr/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/sr/subscriptions', + organizations_url: 'https://api.github.com/users/sr/orgs', + repos_url: 'https://api.github.com/users/sr/repos', + events_url: 'https://api.github.com/users/sr/events{/privacy}', + received_events_url: 'https://api.github.com/users/sr/received_events', + type: 'User', + site_admin: false }, + private: false, + html_url: 'https://github.com/sr/ape', + description: 'The Atom Protocol Exerciser', + fork: false, + url: 'https://api.github.com/repos/sr/ape', + forks_url: 'https://api.github.com/repos/sr/ape/forks', + keys_url: 'https://api.github.com/repos/sr/ape/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/sr/ape/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/sr/ape/teams', + hooks_url: 'https://api.github.com/repos/sr/ape/hooks', + issue_events_url: 'https://api.github.com/repos/sr/ape/issues/events{/number}', + events_url: 'https://api.github.com/repos/sr/ape/events', + assignees_url: 'https://api.github.com/repos/sr/ape/assignees{/user}', + branches_url: 'https://api.github.com/repos/sr/ape/branches{/branch}', + tags_url: 'https://api.github.com/repos/sr/ape/tags', + blobs_url: 'https://api.github.com/repos/sr/ape/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/sr/ape/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/sr/ape/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/sr/ape/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/sr/ape/statuses/{sha}', + languages_url: 'https://api.github.com/repos/sr/ape/languages', + stargazers_url: 'https://api.github.com/repos/sr/ape/stargazers', + contributors_url: 'https://api.github.com/repos/sr/ape/contributors', + subscribers_url: 'https://api.github.com/repos/sr/ape/subscribers', + subscription_url: 'https://api.github.com/repos/sr/ape/subscription', + commits_url: 'https://api.github.com/repos/sr/ape/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/sr/ape/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/sr/ape/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/sr/ape/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/sr/ape/contents/{+path}', + compare_url: 'https://api.github.com/repos/sr/ape/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/sr/ape/merges', + archive_url: 'https://api.github.com/repos/sr/ape/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/sr/ape/downloads', + issues_url: 'https://api.github.com/repos/sr/ape/issues{/number}', + pulls_url: 'https://api.github.com/repos/sr/ape/pulls{/number}', + milestones_url: 'https://api.github.com/repos/sr/ape/milestones{/number}', + notifications_url: 'https://api.github.com/repos/sr/ape/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/sr/ape/labels{/name}', + releases_url: 'https://api.github.com/repos/sr/ape/releases{/id}' }, + { id: 362, + name: 'awesomeness', + full_name: 'collectiveidea/awesomeness', + owner: + { login: 'collectiveidea', + id: 128, + avatar_url: 'https://avatars.githubusercontent.com/u/128?v=2', + gravatar_id: '13ff8dc8c2bf2a4752816e1e3f201a05', + url: 'https://api.github.com/users/collectiveidea', + html_url: 'https://github.com/collectiveidea', + followers_url: 'https://api.github.com/users/collectiveidea/followers', + following_url: 'https://api.github.com/users/collectiveidea/following{/other_user}', + gists_url: 'https://api.github.com/users/collectiveidea/gists{/gist_id}', + starred_url: 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/collectiveidea/subscriptions', + organizations_url: 'https://api.github.com/users/collectiveidea/orgs', + repos_url: 'https://api.github.com/users/collectiveidea/repos', + events_url: 'https://api.github.com/users/collectiveidea/events{/privacy}', + received_events_url: 'https://api.github.com/users/collectiveidea/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/collectiveidea/awesomeness', + description: 'Collective Idea\'s Awesomeness. A collection of useful Rails bits and pieces.', + fork: false, + url: 'https://api.github.com/repos/collectiveidea/awesomeness', + forks_url: 'https://api.github.com/repos/collectiveidea/awesomeness/forks', + keys_url: 'https://api.github.com/repos/collectiveidea/awesomeness/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/collectiveidea/awesomeness/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/collectiveidea/awesomeness/teams', + hooks_url: 'https://api.github.com/repos/collectiveidea/awesomeness/hooks', + issue_events_url: 'https://api.github.com/repos/collectiveidea/awesomeness/issues/events{/number}', + events_url: 'https://api.github.com/repos/collectiveidea/awesomeness/events', + assignees_url: 'https://api.github.com/repos/collectiveidea/awesomeness/assignees{/user}', + branches_url: 'https://api.github.com/repos/collectiveidea/awesomeness/branches{/branch}', + tags_url: 'https://api.github.com/repos/collectiveidea/awesomeness/tags', + blobs_url: 'https://api.github.com/repos/collectiveidea/awesomeness/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/collectiveidea/awesomeness/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/collectiveidea/awesomeness/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/collectiveidea/awesomeness/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/collectiveidea/awesomeness/statuses/{sha}', + languages_url: 'https://api.github.com/repos/collectiveidea/awesomeness/languages', + stargazers_url: 'https://api.github.com/repos/collectiveidea/awesomeness/stargazers', + contributors_url: 'https://api.github.com/repos/collectiveidea/awesomeness/contributors', + subscribers_url: 'https://api.github.com/repos/collectiveidea/awesomeness/subscribers', + subscription_url: 'https://api.github.com/repos/collectiveidea/awesomeness/subscription', + commits_url: 'https://api.github.com/repos/collectiveidea/awesomeness/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/collectiveidea/awesomeness/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/collectiveidea/awesomeness/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/collectiveidea/awesomeness/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/collectiveidea/awesomeness/contents/{+path}', + compare_url: 'https://api.github.com/repos/collectiveidea/awesomeness/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/collectiveidea/awesomeness/merges', + archive_url: 'https://api.github.com/repos/collectiveidea/awesomeness/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/collectiveidea/awesomeness/downloads', + issues_url: 'https://api.github.com/repos/collectiveidea/awesomeness/issues{/number}', + pulls_url: 'https://api.github.com/repos/collectiveidea/awesomeness/pulls{/number}', + milestones_url: 'https://api.github.com/repos/collectiveidea/awesomeness/milestones{/number}', + notifications_url: 'https://api.github.com/repos/collectiveidea/awesomeness/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/collectiveidea/awesomeness/labels{/name}', + releases_url: 'https://api.github.com/repos/collectiveidea/awesomeness/releases{/id}' }, + { id: 363, + name: 'audited', + full_name: 'collectiveidea/audited', + owner: + { login: 'collectiveidea', + id: 128, + avatar_url: 'https://avatars.githubusercontent.com/u/128?v=2', + gravatar_id: '13ff8dc8c2bf2a4752816e1e3f201a05', + url: 'https://api.github.com/users/collectiveidea', + html_url: 'https://github.com/collectiveidea', + followers_url: 'https://api.github.com/users/collectiveidea/followers', + following_url: 'https://api.github.com/users/collectiveidea/following{/other_user}', + gists_url: 'https://api.github.com/users/collectiveidea/gists{/gist_id}', + starred_url: 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/collectiveidea/subscriptions', + organizations_url: 'https://api.github.com/users/collectiveidea/orgs', + repos_url: 'https://api.github.com/users/collectiveidea/repos', + events_url: 'https://api.github.com/users/collectiveidea/events{/privacy}', + received_events_url: 'https://api.github.com/users/collectiveidea/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/collectiveidea/audited', + description: 'Audited (formerly acts_as_audited) is an ORM extension that logs all changes to your Rails models.', + fork: false, + url: 'https://api.github.com/repos/collectiveidea/audited', + forks_url: 'https://api.github.com/repos/collectiveidea/audited/forks', + keys_url: 'https://api.github.com/repos/collectiveidea/audited/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/collectiveidea/audited/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/collectiveidea/audited/teams', + hooks_url: 'https://api.github.com/repos/collectiveidea/audited/hooks', + issue_events_url: 'https://api.github.com/repos/collectiveidea/audited/issues/events{/number}', + events_url: 'https://api.github.com/repos/collectiveidea/audited/events', + assignees_url: 'https://api.github.com/repos/collectiveidea/audited/assignees{/user}', + branches_url: 'https://api.github.com/repos/collectiveidea/audited/branches{/branch}', + tags_url: 'https://api.github.com/repos/collectiveidea/audited/tags', + blobs_url: 'https://api.github.com/repos/collectiveidea/audited/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/collectiveidea/audited/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/collectiveidea/audited/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/collectiveidea/audited/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/collectiveidea/audited/statuses/{sha}', + languages_url: 'https://api.github.com/repos/collectiveidea/audited/languages', + stargazers_url: 'https://api.github.com/repos/collectiveidea/audited/stargazers', + contributors_url: 'https://api.github.com/repos/collectiveidea/audited/contributors', + subscribers_url: 'https://api.github.com/repos/collectiveidea/audited/subscribers', + subscription_url: 'https://api.github.com/repos/collectiveidea/audited/subscription', + commits_url: 'https://api.github.com/repos/collectiveidea/audited/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/collectiveidea/audited/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/collectiveidea/audited/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/collectiveidea/audited/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/collectiveidea/audited/contents/{+path}', + compare_url: 'https://api.github.com/repos/collectiveidea/audited/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/collectiveidea/audited/merges', + archive_url: 'https://api.github.com/repos/collectiveidea/audited/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/collectiveidea/audited/downloads', + issues_url: 'https://api.github.com/repos/collectiveidea/audited/issues{/number}', + pulls_url: 'https://api.github.com/repos/collectiveidea/audited/pulls{/number}', + milestones_url: 'https://api.github.com/repos/collectiveidea/audited/milestones{/number}', + notifications_url: 'https://api.github.com/repos/collectiveidea/audited/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/collectiveidea/audited/labels{/name}', + releases_url: 'https://api.github.com/repos/collectiveidea/audited/releases{/id}' }, + { id: 364, + name: 'acts_as_geocodable', + full_name: 'collectiveidea/acts_as_geocodable', + owner: + { login: 'collectiveidea', + id: 128, + avatar_url: 'https://avatars.githubusercontent.com/u/128?v=2', + gravatar_id: '13ff8dc8c2bf2a4752816e1e3f201a05', + url: 'https://api.github.com/users/collectiveidea', + html_url: 'https://github.com/collectiveidea', + followers_url: 'https://api.github.com/users/collectiveidea/followers', + following_url: 'https://api.github.com/users/collectiveidea/following{/other_user}', + gists_url: 'https://api.github.com/users/collectiveidea/gists{/gist_id}', + starred_url: 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/collectiveidea/subscriptions', + organizations_url: 'https://api.github.com/users/collectiveidea/orgs', + repos_url: 'https://api.github.com/users/collectiveidea/repos', + events_url: 'https://api.github.com/users/collectiveidea/events{/privacy}', + received_events_url: 'https://api.github.com/users/collectiveidea/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/collectiveidea/acts_as_geocodable', + description: 'Simple geocoding for Active Record models', + fork: false, + url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable', + forks_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/forks', + keys_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/teams', + hooks_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/hooks', + issue_events_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/events{/number}', + events_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/events', + assignees_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/assignees{/user}', + branches_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/branches{/branch}', + tags_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/tags', + blobs_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/statuses/{sha}', + languages_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/languages', + stargazers_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/stargazers', + contributors_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/contributors', + subscribers_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscribers', + subscription_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscription', + commits_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/contents/{+path}', + compare_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/merges', + archive_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/downloads', + issues_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues{/number}', + pulls_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/pulls{/number}', + milestones_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/milestones{/number}', + notifications_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/labels{/name}', + releases_url: 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/releases{/id}' } ] diff --git a/result2.json b/result2.json index 2f12ae3..37e3b1f 100644 --- a/result2.json +++ b/result2.json @@ -1 +1,1020 @@ -// Replace this with the data you grabbed from Github (e.g., node github1.js > result1.json) \ No newline at end of file +[ { id: 22741557, + name: 'CSCI-4830-002-2014.github.io', + full_name: 'CSCI-4830-002-2014/CSCI-4830-002-2014.github.io', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/releases{/id}', + created_at: '2014-08-08T01:07:19Z', + updated_at: '2014-09-02T20:53:19Z', + pushed_at: '2014-09-18T23:56:40Z', + git_url: 'git://github.com/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/CSCI-4830-002-2014.github.io.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io', + homepage: null, + size: 13468, + stargazers_count: 0, + watchers_count: 0, + language: 'CSS', + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: true, + forks_count: 0, + mirror_url: null, + open_issues_count: 2, + forks: 0, + open_issues: 2, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 22797822, + name: 'teachers_pet', + full_name: 'CSCI-4830-002-2014/teachers_pet', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/teachers_pet', + description: 'command line tool to help teachers use GitHub in their classrooms', + fork: true, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/teachers_pet/releases{/id}', + created_at: '2014-08-10T00:04:03Z', + updated_at: '2014-07-30T17:09:31Z', + pushed_at: '2014-07-02T20:44:15Z', + git_url: 'git://github.com/CSCI-4830-002-2014/teachers_pet.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/teachers_pet.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/teachers_pet.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/teachers_pet', + homepage: 'https://education.github.com/guide', + size: 1990, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: false, + has_downloads: true, + has_wiki: false, + has_pages: false, + forks_count: 0, + mirror_url: null, + open_issues_count: 0, + forks: 0, + open_issues: 0, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 22798692, + name: 'challenge-week-1', + full_name: 'CSCI-4830-002-2014/challenge-week-1', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1', + description: 'Learning Challenge Week 1', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/releases{/id}', + created_at: '2014-08-10T01:11:52Z', + updated_at: '2014-08-10T01:11:52Z', + pushed_at: '2014-08-21T11:33:02Z', + git_url: 'git://github.com/CSCI-4830-002-2014/challenge-week-1.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/challenge-week-1.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1', + homepage: null, + size: 308, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 26, + mirror_url: null, + open_issues_count: 18, + forks: 26, + open_issues: 18, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 23325681, + name: 'project-1-proposal', + full_name: 'CSCI-4830-002-2014/project-1-proposal', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/project-1-proposal', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/releases{/id}', + created_at: '2014-08-25T19:22:31Z', + updated_at: '2014-08-25T19:22:31Z', + pushed_at: '2014-08-25T19:24:06Z', + git_url: 'git://github.com/CSCI-4830-002-2014/project-1-proposal.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/project-1-proposal.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/project-1-proposal.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/project-1-proposal', + homepage: null, + size: 214, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 23, + mirror_url: null, + open_issues_count: 20, + forks: 23, + open_issues: 20, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 23331414, + name: 'pre-class-survey', + full_name: 'CSCI-4830-002-2014/pre-class-survey', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/pre-class-survey', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/releases{/id}', + created_at: '2014-08-25T22:53:56Z', + updated_at: '2014-08-25T22:53:56Z', + pushed_at: '2014-08-25T22:56:24Z', + git_url: 'git://github.com/CSCI-4830-002-2014/pre-class-survey.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/pre-class-survey.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/pre-class-survey.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/pre-class-survey', + homepage: null, + size: 263, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 31, + mirror_url: null, + open_issues_count: 30, + forks: 31, + open_issues: 30, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 23596888, + name: 'challenge-week-2', + full_name: 'CSCI-4830-002-2014/challenge-week-2', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-2', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-2/releases{/id}', + created_at: '2014-09-02T21:50:57Z', + updated_at: '2014-09-02T21:50:57Z', + pushed_at: '2014-09-02T21:59:13Z', + git_url: 'git://github.com/CSCI-4830-002-2014/challenge-week-2.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/challenge-week-2.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-2.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-2', + homepage: null, + size: 15928, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 23, + mirror_url: null, + open_issues_count: 23, + forks: 23, + open_issues: 23, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 23597603, + name: 'project-1-make-a', + full_name: 'CSCI-4830-002-2014/project-1-make-a', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/project-1-make-a', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}', + created_at: '2014-09-02T22:16:21Z', + updated_at: '2014-09-03T17:36:40Z', + pushed_at: '2014-09-07T22:10:07Z', + git_url: 'git://github.com/CSCI-4830-002-2014/project-1-make-a.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/project-1-make-a.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/project-1-make-a.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/project-1-make-a', + homepage: null, + size: 135, + stargazers_count: 0, + watchers_count: 0, + language: 'Arduino', + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 20, + mirror_url: null, + open_issues_count: 20, + forks: 20, + open_issues: 20, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 23758208, + name: 'hackathon-accesslog', + full_name: 'CSCI-4830-002-2014/hackathon-accesslog', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/hackathon-accesslog', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-accesslog/releases{/id}', + created_at: '2014-09-07T11:19:24Z', + updated_at: '2014-09-07T11:19:24Z', + pushed_at: '2014-09-07T11:34:49Z', + git_url: 'git://github.com/CSCI-4830-002-2014/hackathon-accesslog.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/hackathon-accesslog.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/hackathon-accesslog.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/hackathon-accesslog', + homepage: null, + size: 148, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 12, + mirror_url: null, + open_issues_count: 5, + forks: 12, + open_issues: 5, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 23832523, + name: 'challenge-week-3', + full_name: 'CSCI-4830-002-2014/challenge-week-3', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-3', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}', + created_at: '2014-09-09T12:29:25Z', + updated_at: '2014-09-09T12:29:43Z', + pushed_at: '2014-09-11T15:43:24Z', + git_url: 'git://github.com/CSCI-4830-002-2014/challenge-week-3.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/challenge-week-3.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-3.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-3', + homepage: null, + size: 25504, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 22, + mirror_url: null, + open_issues_count: 32, + forks: 22, + open_issues: 32, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 24055645, + name: 'hackathon-github', + full_name: 'CSCI-4830-002-2014/hackathon-github', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/hackathon-github', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/releases{/id}', + created_at: '2014-09-15T12:33:04Z', + updated_at: '2014-09-15T12:34:07Z', + pushed_at: '2014-09-15T12:46:00Z', + git_url: 'git://github.com/CSCI-4830-002-2014/hackathon-github.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/hackathon-github.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/hackathon-github.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/hackathon-github', + homepage: null, + size: 3906, + stargazers_count: 0, + watchers_count: 0, + language: 'JavaScript', + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 12, + mirror_url: null, + open_issues_count: 5, + forks: 12, + open_issues: 5, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 24084089, + name: 'deploy-1', + full_name: 'CSCI-4830-002-2014/deploy-1', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/deploy-1', + description: 'Looking at your data after the first deployment of the arduino', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/releases{/id}', + created_at: '2014-09-16T03:34:02Z', + updated_at: '2014-09-16T03:36:56Z', + pushed_at: '2014-09-16T03:41:50Z', + git_url: 'git://github.com/CSCI-4830-002-2014/deploy-1.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/deploy-1.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/deploy-1.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/deploy-1', + homepage: null, + size: 0, + stargazers_count: 0, + watchers_count: 0, + language: null, + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 6, + mirror_url: null, + open_issues_count: 1, + forks: 6, + open_issues: 1, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } }, + { id: 24125604, + name: 'challenge-week-4', + full_name: 'CSCI-4830-002-2014/challenge-week-4', + owner: + { login: 'CSCI-4830-002-2014', + id: 8374562, + avatar_url: 'https://avatars.githubusercontent.com/u/8374562?v=2', + gravatar_id: null, + url: 'https://api.github.com/users/CSCI-4830-002-2014', + html_url: 'https://github.com/CSCI-4830-002-2014', + followers_url: 'https://api.github.com/users/CSCI-4830-002-2014/followers', + following_url: 'https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}', + gists_url: 'https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}', + starred_url: 'https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/CSCI-4830-002-2014/subscriptions', + organizations_url: 'https://api.github.com/users/CSCI-4830-002-2014/orgs', + repos_url: 'https://api.github.com/users/CSCI-4830-002-2014/repos', + events_url: 'https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}', + received_events_url: 'https://api.github.com/users/CSCI-4830-002-2014/received_events', + type: 'Organization', + site_admin: false }, + private: false, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-4', + description: '', + fork: false, + url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4', + forks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/forks', + keys_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/keys{/key_id}', + collaborators_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/collaborators{/collaborator}', + teams_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/teams', + hooks_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/hooks', + issue_events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/events{/number}', + events_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/events', + assignees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/assignees{/user}', + branches_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/branches{/branch}', + tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/tags', + blobs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/blobs{/sha}', + git_tags_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/tags{/sha}', + git_refs_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/refs{/sha}', + trees_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/trees{/sha}', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/{sha}', + languages_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/languages', + stargazers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/stargazers', + contributors_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contributors', + subscribers_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscribers', + subscription_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscription', + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/commits{/sha}', + git_commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/commits{/sha}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/comments{/number}', + issue_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/{number}', + contents_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contents/{+path}', + compare_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/compare/{base}...{head}', + merges_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/merges', + archive_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/{archive_format}{/ref}', + downloads_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/downloads', + issues_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues{/number}', + pulls_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls{/number}', + milestones_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/milestones{/number}', + notifications_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/notifications{?since,all,participating}', + labels_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/labels{/name}', + releases_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/releases{/id}', + created_at: '2014-09-17T01:55:18Z', + updated_at: '2014-09-17T19:06:06Z', + pushed_at: '2014-09-17T14:43:33Z', + git_url: 'git://github.com/CSCI-4830-002-2014/challenge-week-4.git', + ssh_url: 'git@github.com:CSCI-4830-002-2014/challenge-week-4.git', + clone_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-4.git', + svn_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-4', + homepage: null, + size: 0, + stargazers_count: 0, + watchers_count: 0, + language: 'JavaScript', + has_issues: true, + has_downloads: true, + has_wiki: true, + has_pages: false, + forks_count: 17, + mirror_url: null, + open_issues_count: 9, + forks: 17, + open_issues: 9, + watchers: 0, + default_branch: 'master', + permissions: { admin: false, push: false, pull: true } } ] diff --git a/result3.json b/result3.json index 2f12ae3..dc56143 100644 --- a/result3.json +++ b/result3.json @@ -1 +1,5 @@ -// Replace this with the data you grabbed from Github (e.g., node github1.js > result1.json) \ No newline at end of file +var rest = require('restler'); + +rest.get('https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/forks').on('complete', function(data) { + console.log(data); +}); diff --git a/result4.json b/result4.json index 2f12ae3..69dbf38 100644 --- a/result4.json +++ b/result4.json @@ -1 +1,310 @@ -// Replace this with the data you grabbed from Github (e.g., node github1.js > result1.json) \ No newline at end of file +[ { url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/15', + id: 20554086, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/15', + diff_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/15.diff', + patch_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/15.patch', + issue_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/15', + number: 15, + state: 'closed', + locked: false, + title: 'Challenge 1 turn in, Niklas Fejes', + user: + { login: 'nfejes', + id: 8550912, + avatar_url: 'https://avatars.githubusercontent.com/u/8550912?v=2', + gravatar_id: '1aa35115c2d958c6abab5ae39a3277f1', + url: 'https://api.github.com/users/nfejes', + html_url: 'https://github.com/nfejes', + followers_url: 'https://api.github.com/users/nfejes/followers', + following_url: 'https://api.github.com/users/nfejes/following{/other_user}', + gists_url: 'https://api.github.com/users/nfejes/gists{/gist_id}', + starred_url: 'https://api.github.com/users/nfejes/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/nfejes/subscriptions', + organizations_url: 'https://api.github.com/users/nfejes/orgs', + repos_url: 'https://api.github.com/users/nfejes/repos', + events_url: 'https://api.github.com/users/nfejes/events{/privacy}', + received_events_url: 'https://api.github.com/users/nfejes/received_events', + type: 'User', + site_admin: false }, + body: '', + created_at: '2014-09-01T04:06:14Z', + updated_at: '2014-09-02T22:59:59Z', + closed_at: '2014-09-02T22:59:59Z', + merged_at: null, + merge_commit_sha: 'e0ff92486bafcc5e4bde5d40b0f9a919c8508582', + assignee: null, + milestone: null, + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/15/commits', + review_comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/15/comments', + review_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/comments/{number}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/15/comments', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/statuses/97688c2d5c85983631fb13f3b41136873edcc417', + head: + { label: 'nfejes:master', + ref: 'master', + sha: '97688c2d5c85983631fb13f3b41136873edcc417', + user: [Object], + repo: [Object] }, + base: + { label: 'CSCI-4830-002-2014:master', + ref: 'master', + sha: '3641c881454b15e540657ef4e7a6f33436e37beb', + user: [Object], + repo: [Object] }, + _links: + { self: [Object], + html: [Object], + issue: [Object], + comments: [Object], + review_comments: [Object], + review_comment: [Object], + commits: [Object], + statuses: [Object] } }, + { url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/14', + id: 20554028, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/14', + diff_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/14.diff', + patch_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/14.patch', + issue_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/14', + number: 14, + state: 'closed', + locked: false, + title: 'Marc SimpsonUpdate README.md', + user: + { login: 'masi8397', + id: 3361094, + avatar_url: 'https://avatars.githubusercontent.com/u/3361094?v=2', + gravatar_id: 'c5ccc8469a263e5af6276bae1b6ae442', + url: 'https://api.github.com/users/masi8397', + html_url: 'https://github.com/masi8397', + followers_url: 'https://api.github.com/users/masi8397/followers', + following_url: 'https://api.github.com/users/masi8397/following{/other_user}', + gists_url: 'https://api.github.com/users/masi8397/gists{/gist_id}', + starred_url: 'https://api.github.com/users/masi8397/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/masi8397/subscriptions', + organizations_url: 'https://api.github.com/users/masi8397/orgs', + repos_url: 'https://api.github.com/users/masi8397/repos', + events_url: 'https://api.github.com/users/masi8397/events{/privacy}', + received_events_url: 'https://api.github.com/users/masi8397/received_events', + type: 'User', + site_admin: false }, + body: '', + created_at: '2014-09-01T04:02:25Z', + updated_at: '2014-09-02T22:59:43Z', + closed_at: '2014-09-02T22:59:43Z', + merged_at: null, + merge_commit_sha: 'f9c15789a70029f7e13954cf213d2aa0f9ee9927', + assignee: null, + milestone: null, + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/14/commits', + review_comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/14/comments', + review_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/comments/{number}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/14/comments', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/statuses/2f64e48a4e4509d28ece27e9b9ab85c691a55937', + head: + { label: 'masi8397:master', + ref: 'master', + sha: '2f64e48a4e4509d28ece27e9b9ab85c691a55937', + user: [Object], + repo: [Object] }, + base: + { label: 'CSCI-4830-002-2014:master', + ref: 'master', + sha: '3641c881454b15e540657ef4e7a6f33436e37beb', + user: [Object], + repo: [Object] }, + _links: + { self: [Object], + html: [Object], + issue: [Object], + comments: [Object], + review_comments: [Object], + review_comment: [Object], + commits: [Object], + statuses: [Object] } }, + { url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/13', + id: 20553900, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/13', + diff_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/13.diff', + patch_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/13.patch', + issue_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/13', + number: 13, + state: 'closed', + locked: false, + title: 'Finished Challenge Week 1', + user: + { login: 'dano8957', + id: 8550840, + avatar_url: 'https://avatars.githubusercontent.com/u/8550840?v=2', + gravatar_id: '8566b8511d01a060ad6efb9c4bb1b0cf', + url: 'https://api.github.com/users/dano8957', + html_url: 'https://github.com/dano8957', + followers_url: 'https://api.github.com/users/dano8957/followers', + following_url: 'https://api.github.com/users/dano8957/following{/other_user}', + gists_url: 'https://api.github.com/users/dano8957/gists{/gist_id}', + starred_url: 'https://api.github.com/users/dano8957/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/dano8957/subscriptions', + organizations_url: 'https://api.github.com/users/dano8957/orgs', + repos_url: 'https://api.github.com/users/dano8957/repos', + events_url: 'https://api.github.com/users/dano8957/events{/privacy}', + received_events_url: 'https://api.github.com/users/dano8957/received_events', + type: 'User', + site_admin: false }, + body: '', + created_at: '2014-09-01T03:54:55Z', + updated_at: '2014-09-02T23:01:25Z', + closed_at: '2014-09-02T22:59:30Z', + merged_at: null, + merge_commit_sha: '727c4913e8cfbeaa673f41968588cc85e0124c87', + assignee: null, + milestone: null, + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/13/commits', + review_comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/13/comments', + review_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/comments/{number}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/13/comments', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/statuses/4f6dbc9952576882061303c663dce9030e22139f', + head: + { label: 'dano8957:master', + ref: 'master', + sha: '4f6dbc9952576882061303c663dce9030e22139f', + user: [Object], + repo: [Object] }, + base: + { label: 'CSCI-4830-002-2014:master', + ref: 'master', + sha: '3641c881454b15e540657ef4e7a6f33436e37beb', + user: [Object], + repo: [Object] }, + _links: + { self: [Object], + html: [Object], + issue: [Object], + comments: [Object], + review_comments: [Object], + review_comment: [Object], + commits: [Object], + statuses: [Object] } }, + { url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/12', + id: 20552830, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/12', + diff_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/12.diff', + patch_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/12.patch', + issue_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/12', + number: 12, + state: 'closed', + locked: false, + title: 'Adrian Chen HW1', + user: + { login: 'adrian-chen', + id: 8551273, + avatar_url: 'https://avatars.githubusercontent.com/u/8551273?v=2', + gravatar_id: 'ed3d513700101a554a82369fc8cdc971', + url: 'https://api.github.com/users/adrian-chen', + html_url: 'https://github.com/adrian-chen', + followers_url: 'https://api.github.com/users/adrian-chen/followers', + following_url: 'https://api.github.com/users/adrian-chen/following{/other_user}', + gists_url: 'https://api.github.com/users/adrian-chen/gists{/gist_id}', + starred_url: 'https://api.github.com/users/adrian-chen/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/adrian-chen/subscriptions', + organizations_url: 'https://api.github.com/users/adrian-chen/orgs', + repos_url: 'https://api.github.com/users/adrian-chen/repos', + events_url: 'https://api.github.com/users/adrian-chen/events{/privacy}', + received_events_url: 'https://api.github.com/users/adrian-chen/received_events', + type: 'User', + site_admin: false }, + body: '', + created_at: '2014-09-01T02:40:12Z', + updated_at: '2014-09-02T22:59:18Z', + closed_at: '2014-09-02T22:59:18Z', + merged_at: null, + merge_commit_sha: '8546dff896b5eed391f9857e7302ef89638234a9', + assignee: null, + milestone: null, + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/12/commits', + review_comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/12/comments', + review_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/comments/{number}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/12/comments', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/statuses/915fefd0112a8ae735a5c902b3c506816ffe8b5f', + head: + { label: 'adrian-chen:master', + ref: 'master', + sha: '915fefd0112a8ae735a5c902b3c506816ffe8b5f', + user: [Object], + repo: [Object] }, + base: + { label: 'CSCI-4830-002-2014:master', + ref: 'master', + sha: '3641c881454b15e540657ef4e7a6f33436e37beb', + user: [Object], + repo: [Object] }, + _links: + { self: [Object], + html: [Object], + issue: [Object], + comments: [Object], + review_comments: [Object], + review_comment: [Object], + commits: [Object], + statuses: [Object] } }, + { url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/11', + id: 20551376, + html_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/11', + diff_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/11.diff', + patch_url: 'https://github.com/CSCI-4830-002-2014/challenge-week-1/pull/11.patch', + issue_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/11', + number: 11, + state: 'closed', + locked: false, + title: 'Adding responses to challenge week 1', + user: + { login: 'alne4294', + id: 2325930, + avatar_url: 'https://avatars.githubusercontent.com/u/2325930?v=2', + gravatar_id: '0226cd13234e75077fb60f62d610b629', + url: 'https://api.github.com/users/alne4294', + html_url: 'https://github.com/alne4294', + followers_url: 'https://api.github.com/users/alne4294/followers', + following_url: 'https://api.github.com/users/alne4294/following{/other_user}', + gists_url: 'https://api.github.com/users/alne4294/gists{/gist_id}', + starred_url: 'https://api.github.com/users/alne4294/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/alne4294/subscriptions', + organizations_url: 'https://api.github.com/users/alne4294/orgs', + repos_url: 'https://api.github.com/users/alne4294/repos', + events_url: 'https://api.github.com/users/alne4294/events{/privacy}', + received_events_url: 'https://api.github.com/users/alne4294/received_events', + type: 'User', + site_admin: false }, + body: '', + created_at: '2014-09-01T00:48:28Z', + updated_at: '2014-09-02T23:31:50Z', + closed_at: '2014-09-02T22:57:38Z', + merged_at: null, + merge_commit_sha: '658e399c7f49ac39ee260382f88567c453e6bfd0', + assignee: null, + milestone: null, + commits_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/11/commits', + review_comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/11/comments', + review_comment_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls/comments/{number}', + comments_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/issues/11/comments', + statuses_url: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/statuses/fc006ea3bbf69a9e00662a68a3451043433c11c0', + head: + { label: 'alne4294:master', + ref: 'master', + sha: 'fc006ea3bbf69a9e00662a68a3451043433c11c0', + user: [Object], + repo: [Object] }, + base: + { label: 'CSCI-4830-002-2014:master', + ref: 'master', + sha: '3641c881454b15e540657ef4e7a6f33436e37beb', + user: [Object], + repo: [Object] }, + _links: + { self: [Object], + html: [Object], + issue: [Object], + comments: [Object], + review_comments: [Object], + review_comment: [Object], + commits: [Object], + statuses: [Object] } } ] diff --git a/result5.json b/result5.json index 2f12ae3..227cd4c 100644 --- a/result5.json +++ b/result5.json @@ -1 +1,120 @@ -// Replace this with the data you grabbed from Github (e.g., node github1.js > result1.json) \ No newline at end of file +[ { total: 1, + weeks: [ [Object], [Object], [Object] ], + author: + { login: 'indiesquidge', + id: 3409645, + avatar_url: 'https://avatars.githubusercontent.com/u/3409645?v=2', + gravatar_id: '7859d3e26159735a713fd70ec8dd1b72', + url: 'https://api.github.com/users/indiesquidge', + html_url: 'https://github.com/indiesquidge', + followers_url: 'https://api.github.com/users/indiesquidge/followers', + following_url: 'https://api.github.com/users/indiesquidge/following{/other_user}', + gists_url: 'https://api.github.com/users/indiesquidge/gists{/gist_id}', + starred_url: 'https://api.github.com/users/indiesquidge/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/indiesquidge/subscriptions', + organizations_url: 'https://api.github.com/users/indiesquidge/orgs', + repos_url: 'https://api.github.com/users/indiesquidge/repos', + events_url: 'https://api.github.com/users/indiesquidge/events{/privacy}', + received_events_url: 'https://api.github.com/users/indiesquidge/received_events', + type: 'User', + site_admin: false } }, + { total: 2, + weeks: [ [Object], [Object], [Object] ], + author: + { login: 'dano8957', + id: 8550840, + avatar_url: 'https://avatars.githubusercontent.com/u/8550840?v=2', + gravatar_id: '8566b8511d01a060ad6efb9c4bb1b0cf', + url: 'https://api.github.com/users/dano8957', + html_url: 'https://github.com/dano8957', + followers_url: 'https://api.github.com/users/dano8957/followers', + following_url: 'https://api.github.com/users/dano8957/following{/other_user}', + gists_url: 'https://api.github.com/users/dano8957/gists{/gist_id}', + starred_url: 'https://api.github.com/users/dano8957/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/dano8957/subscriptions', + organizations_url: 'https://api.github.com/users/dano8957/orgs', + repos_url: 'https://api.github.com/users/dano8957/repos', + events_url: 'https://api.github.com/users/dano8957/events{/privacy}', + received_events_url: 'https://api.github.com/users/dano8957/received_events', + type: 'User', + site_admin: false } }, + { total: 3, + weeks: [ [Object], [Object], [Object] ], + author: + { login: 'ianks', + id: 3303032, + avatar_url: 'https://avatars.githubusercontent.com/u/3303032?v=2', + gravatar_id: '881dfa4c1ac507a08ac32e99fc0de976', + url: 'https://api.github.com/users/ianks', + html_url: 'https://github.com/ianks', + followers_url: 'https://api.github.com/users/ianks/followers', + following_url: 'https://api.github.com/users/ianks/following{/other_user}', + gists_url: 'https://api.github.com/users/ianks/gists{/gist_id}', + starred_url: 'https://api.github.com/users/ianks/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/ianks/subscriptions', + organizations_url: 'https://api.github.com/users/ianks/orgs', + repos_url: 'https://api.github.com/users/ianks/repos', + events_url: 'https://api.github.com/users/ianks/events{/privacy}', + received_events_url: 'https://api.github.com/users/ianks/received_events', + type: 'User', + site_admin: false } }, + { total: 3, + weeks: [ [Object], [Object], [Object] ], + author: + { login: 'alne4294', + id: 2325930, + avatar_url: 'https://avatars.githubusercontent.com/u/2325930?v=2', + gravatar_id: '0226cd13234e75077fb60f62d610b629', + url: 'https://api.github.com/users/alne4294', + html_url: 'https://github.com/alne4294', + followers_url: 'https://api.github.com/users/alne4294/followers', + following_url: 'https://api.github.com/users/alne4294/following{/other_user}', + gists_url: 'https://api.github.com/users/alne4294/gists{/gist_id}', + starred_url: 'https://api.github.com/users/alne4294/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/alne4294/subscriptions', + organizations_url: 'https://api.github.com/users/alne4294/orgs', + repos_url: 'https://api.github.com/users/alne4294/repos', + events_url: 'https://api.github.com/users/alne4294/events{/privacy}', + received_events_url: 'https://api.github.com/users/alne4294/received_events', + type: 'User', + site_admin: false } }, + { total: 4, + weeks: [ [Object], [Object], [Object] ], + author: + { login: 'doubleshow', + id: 129562, + avatar_url: 'https://avatars.githubusercontent.com/u/129562?v=2', + gravatar_id: 'fd560523056cc1f20d64b172df704748', + url: 'https://api.github.com/users/doubleshow', + html_url: 'https://github.com/doubleshow', + followers_url: 'https://api.github.com/users/doubleshow/followers', + following_url: 'https://api.github.com/users/doubleshow/following{/other_user}', + gists_url: 'https://api.github.com/users/doubleshow/gists{/gist_id}', + starred_url: 'https://api.github.com/users/doubleshow/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/doubleshow/subscriptions', + organizations_url: 'https://api.github.com/users/doubleshow/orgs', + repos_url: 'https://api.github.com/users/doubleshow/repos', + events_url: 'https://api.github.com/users/doubleshow/events{/privacy}', + received_events_url: 'https://api.github.com/users/doubleshow/received_events', + type: 'User', + site_admin: false } }, + { total: 10, + weeks: [ [Object], [Object], [Object] ], + author: + { login: 'antsankov', + id: 2533512, + avatar_url: 'https://avatars.githubusercontent.com/u/2533512?v=2', + gravatar_id: 'd96591fea9a411a98b31e40485669d7f', + url: 'https://api.github.com/users/antsankov', + html_url: 'https://github.com/antsankov', + followers_url: 'https://api.github.com/users/antsankov/followers', + following_url: 'https://api.github.com/users/antsankov/following{/other_user}', + gists_url: 'https://api.github.com/users/antsankov/gists{/gist_id}', + starred_url: 'https://api.github.com/users/antsankov/starred{/owner}{/repo}', + subscriptions_url: 'https://api.github.com/users/antsankov/subscriptions', + organizations_url: 'https://api.github.com/users/antsankov/orgs', + repos_url: 'https://api.github.com/users/antsankov/repos', + events_url: 'https://api.github.com/users/antsankov/events{/privacy}', + received_events_url: 'https://api.github.com/users/antsankov/received_events', + type: 'User', + site_admin: false } } ] diff --git a/result6.json b/result6.json index 2f12ae3..7eb53e6 100644 --- a/result6.json +++ b/result6.json @@ -1 +1,766 @@ -// Replace this with the data you grabbed from Github (e.g., node github1.js > result1.json) \ No newline at end of file +{ _readableState: + { highWaterMark: 16384, + buffer: [], + length: 0, + pipes: null, + pipesCount: 0, + flowing: false, + ended: true, + endEmitted: true, + reading: false, + calledRead: true, + sync: false, + needReadable: true, + emittedReadable: false, + readableListening: false, + objectMode: false, + defaultEncoding: 'utf8', + ranOut: false, + awaitDrain: 0, + readingMore: false, + decoder: { encoding: 'binary', write: [Function: passThroughWrite] }, + encoding: 'binary' }, + readable: false, + domain: null, + _events: + { end: [ [Function: responseOnEnd], [Function] ], + data: [Function], + readable: [Function] }, + _maxListeners: 10, + socket: + { _readableState: + { highWaterMark: 16384, + buffer: [], + length: 0, + pipes: null, + pipesCount: 0, + flowing: false, + ended: false, + endEmitted: false, + reading: false, + calledRead: true, + sync: false, + needReadable: true, + emittedReadable: false, + readableListening: false, + objectMode: false, + defaultEncoding: 'utf8', + ranOut: false, + awaitDrain: 0, + readingMore: false, + decoder: null, + encoding: null }, + readable: true, + domain: null, + _events: + { end: [Object], + finish: [Object], + sslOutEnd: [Function], + free: [Function], + close: [Object], + agentRemove: [Function], + drain: [Function: ondrain] }, + _maxListeners: 10, + _writableState: + { highWaterMark: 16384, + objectMode: false, + needDrain: false, + ending: false, + ended: false, + finished: false, + decodeStrings: true, + defaultEncoding: 'utf8', + length: 0, + writing: false, + sync: false, + bufferProcessing: false, + onwrite: [Function], + writecb: null, + writelen: 0, + buffer: [], + errorEmitted: false }, + writable: true, + allowHalfOpen: true, + pair: + { domain: null, + _events: [Object], + _maxListeners: 10, + server: undefined, + _secureEstablished: true, + _isServer: false, + _encWriteState: true, + _clearWriteState: true, + _doneFlag: false, + _destroying: false, + credentials: [Object], + _rejectUnauthorized: true, + _requestCert: true, + ssl: {}, + servername: false, + cleartext: [Circular], + encrypted: [Object], + fd: undefined, + npnProtocol: undefined }, + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Circular], + _buffer: [Object] }, + _buffer: + { isFull: false, + pool: , + offset: 3402, + remaining: 10482358 }, + _handle: { readStop: [Function], readStart: [Function] }, + socket: + { _connecting: false, + _handle: [Object], + _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: false, + onend: null, + destroyed: false, + bytesRead: 5756, + _bytesDispatched: 782, + _pendingData: null, + _pendingEncoding: '', + read: [Function], + _consuming: true }, + encrypted: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Circular], + _buffer: [Object] }, + authorized: true, + _controlReleased: true, + parser: null, + _httpMessage: + { domain: null, + _events: [Object], + _maxListeners: 10, + output: [], + outputEncodings: [], + writable: true, + _last: false, + chunkedEncoding: false, + shouldKeepAlive: true, + useChunkedEncodingByDefault: true, + sendDate: false, + _headerSent: true, + _header: 'POST /repos/CSCI-4830-002-2014/challenge-week-4/issues HTTP/1.1\r\nAccept: */*\r\nUser-Agent: Restler for node.js\r\nHost: api.github.com\r\nAccept-Encoding: gzip, deflate\r\nAuthorization: Basic aWFua3M6JWdUcEdAXjBPRWZXSDNp\r\nContent-Length: 24\r\nConnection: keep-alive\r\n\r\n', + _hasBody: true, + _trailer: '', + finished: true, + _hangupClose: false, + socket: [Circular], + connection: [Circular], + agent: [Object], + socketPath: undefined, + method: 'POST', + path: '/repos/CSCI-4830-002-2014/challenge-week-4/issues', + _headers: [Object], + _headerNames: [Object], + parser: null, + res: [Circular] }, + ondata: null, + onend: null, + npnProtocol: undefined }, + connection: + { _readableState: + { highWaterMark: 16384, + buffer: [], + length: 0, + pipes: null, + pipesCount: 0, + flowing: false, + ended: false, + endEmitted: false, + reading: false, + calledRead: true, + sync: false, + needReadable: true, + emittedReadable: false, + readableListening: false, + objectMode: false, + defaultEncoding: 'utf8', + ranOut: false, + awaitDrain: 0, + readingMore: false, + decoder: null, + encoding: null }, + readable: true, + domain: null, + _events: + { end: [Object], + finish: [Object], + sslOutEnd: [Function], + free: [Function], + close: [Object], + agentRemove: [Function], + drain: [Function: ondrain] }, + _maxListeners: 10, + _writableState: + { highWaterMark: 16384, + objectMode: false, + needDrain: false, + ending: false, + ended: false, + finished: false, + decodeStrings: true, + defaultEncoding: 'utf8', + length: 0, + writing: false, + sync: false, + bufferProcessing: false, + onwrite: [Function], + writecb: null, + writelen: 0, + buffer: [], + errorEmitted: false }, + writable: true, + allowHalfOpen: true, + pair: + { domain: null, + _events: [Object], + _maxListeners: 10, + server: undefined, + _secureEstablished: true, + _isServer: false, + _encWriteState: true, + _clearWriteState: true, + _doneFlag: false, + _destroying: false, + credentials: [Object], + _rejectUnauthorized: true, + _requestCert: true, + ssl: {}, + servername: false, + cleartext: [Circular], + encrypted: [Object], + fd: undefined, + npnProtocol: undefined }, + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Circular], + _buffer: [Object] }, + _buffer: + { isFull: false, + pool: , + offset: 3402, + remaining: 10482358 }, + _handle: { readStop: [Function], readStart: [Function] }, + socket: + { _connecting: false, + _handle: [Object], + _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: false, + onend: null, + destroyed: false, + bytesRead: 5756, + _bytesDispatched: 782, + _pendingData: null, + _pendingEncoding: '', + read: [Function], + _consuming: true }, + encrypted: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Circular], + _buffer: [Object] }, + authorized: true, + _controlReleased: true, + parser: null, + _httpMessage: + { domain: null, + _events: [Object], + _maxListeners: 10, + output: [], + outputEncodings: [], + writable: true, + _last: false, + chunkedEncoding: false, + shouldKeepAlive: true, + useChunkedEncodingByDefault: true, + sendDate: false, + _headerSent: true, + _header: 'POST /repos/CSCI-4830-002-2014/challenge-week-4/issues HTTP/1.1\r\nAccept: */*\r\nUser-Agent: Restler for node.js\r\nHost: api.github.com\r\nAccept-Encoding: gzip, deflate\r\nAuthorization: Basic aWFua3M6JWdUcEdAXjBPRWZXSDNp\r\nContent-Length: 24\r\nConnection: keep-alive\r\n\r\n', + _hasBody: true, + _trailer: '', + finished: true, + _hangupClose: false, + socket: [Circular], + connection: [Circular], + agent: [Object], + socketPath: undefined, + method: 'POST', + path: '/repos/CSCI-4830-002-2014/challenge-week-4/issues', + _headers: [Object], + _headerNames: [Object], + parser: null, + res: [Circular] }, + ondata: null, + onend: null, + npnProtocol: undefined }, + httpVersion: '1.1', + complete: true, + headers: + { server: 'GitHub.com', + date: 'Sun, 21 Sep 2014 22:29:08 GMT', + 'content-type': 'application/json; charset=utf-8', + status: '201 Created', + 'x-ratelimit-limit': '5000', + 'x-ratelimit-remaining': '4983', + 'x-ratelimit-reset': '1411340348', + 'cache-control': 'private, max-age=60, s-maxage=60', + etag: '"a9bafb11ff3b4a6ab2ed04037e9bb263"', + location: 'https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22', + vary: 'Accept, Authorization, Cookie, X-GitHub-OTP', + 'x-github-media-type': 'github.v3', + 'x-xss-protection': '1; mode=block', + 'x-frame-options': 'deny', + 'content-security-policy': 'default-src \'none\'', + 'content-length': '1595', + 'access-control-allow-credentials': 'true', + 'access-control-expose-headers': 'ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval', + 'access-control-allow-origin': '*', + 'x-github-request-id': '403A0D6E:3B44:12F2F530:541F5134', + 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', + 'x-content-type-options': 'nosniff' }, + trailers: {}, + _pendings: [], + _pendingIndex: 0, + url: '', + method: null, + statusCode: 201, + client: + { _readableState: + { highWaterMark: 16384, + buffer: [], + length: 0, + pipes: null, + pipesCount: 0, + flowing: false, + ended: false, + endEmitted: false, + reading: false, + calledRead: true, + sync: false, + needReadable: true, + emittedReadable: false, + readableListening: false, + objectMode: false, + defaultEncoding: 'utf8', + ranOut: false, + awaitDrain: 0, + readingMore: false, + decoder: null, + encoding: null }, + readable: true, + domain: null, + _events: + { end: [Object], + finish: [Object], + sslOutEnd: [Function], + free: [Function], + close: [Object], + agentRemove: [Function], + drain: [Function: ondrain] }, + _maxListeners: 10, + _writableState: + { highWaterMark: 16384, + objectMode: false, + needDrain: false, + ending: false, + ended: false, + finished: false, + decodeStrings: true, + defaultEncoding: 'utf8', + length: 0, + writing: false, + sync: false, + bufferProcessing: false, + onwrite: [Function], + writecb: null, + writelen: 0, + buffer: [], + errorEmitted: false }, + writable: true, + allowHalfOpen: true, + pair: + { domain: null, + _events: [Object], + _maxListeners: 10, + server: undefined, + _secureEstablished: true, + _isServer: false, + _encWriteState: true, + _clearWriteState: true, + _doneFlag: false, + _destroying: false, + credentials: [Object], + _rejectUnauthorized: true, + _requestCert: true, + ssl: {}, + servername: false, + cleartext: [Circular], + encrypted: [Object], + fd: undefined, + npnProtocol: undefined }, + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Circular], + _buffer: [Object] }, + _buffer: + { isFull: false, + pool: , + offset: 3402, + remaining: 10482358 }, + _handle: { readStop: [Function], readStart: [Function] }, + socket: + { _connecting: false, + _handle: [Object], + _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: false, + onend: null, + destroyed: false, + bytesRead: 5756, + _bytesDispatched: 782, + _pendingData: null, + _pendingEncoding: '', + read: [Function], + _consuming: true }, + encrypted: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Circular], + _buffer: [Object] }, + authorized: true, + _controlReleased: true, + parser: null, + _httpMessage: + { domain: null, + _events: [Object], + _maxListeners: 10, + output: [], + outputEncodings: [], + writable: true, + _last: false, + chunkedEncoding: false, + shouldKeepAlive: true, + useChunkedEncodingByDefault: true, + sendDate: false, + _headerSent: true, + _header: 'POST /repos/CSCI-4830-002-2014/challenge-week-4/issues HTTP/1.1\r\nAccept: */*\r\nUser-Agent: Restler for node.js\r\nHost: api.github.com\r\nAccept-Encoding: gzip, deflate\r\nAuthorization: Basic aWFua3M6JWdUcEdAXjBPRWZXSDNp\r\nContent-Length: 24\r\nConnection: keep-alive\r\n\r\n', + _hasBody: true, + _trailer: '', + finished: true, + _hangupClose: false, + socket: [Circular], + connection: [Circular], + agent: [Object], + socketPath: undefined, + method: 'POST', + path: '/repos/CSCI-4830-002-2014/challenge-week-4/issues', + _headers: [Object], + _headerNames: [Object], + parser: null, + res: [Circular] }, + ondata: null, + onend: null, + npnProtocol: undefined }, + _consuming: true, + _dumped: false, + httpVersionMajor: 1, + httpVersionMinor: 1, + upgrade: false, + req: + { domain: null, + _events: { response: [Function], error: [Function] }, + _maxListeners: 10, + output: [], + outputEncodings: [], + writable: true, + _last: false, + chunkedEncoding: false, + shouldKeepAlive: true, + useChunkedEncodingByDefault: true, + sendDate: false, + _headerSent: true, + _header: 'POST /repos/CSCI-4830-002-2014/challenge-week-4/issues HTTP/1.1\r\nAccept: */*\r\nUser-Agent: Restler for node.js\r\nHost: api.github.com\r\nAccept-Encoding: gzip, deflate\r\nAuthorization: Basic aWFua3M6JWdUcEdAXjBPRWZXSDNp\r\nContent-Length: 24\r\nConnection: keep-alive\r\n\r\n', + _hasBody: true, + _trailer: '', + finished: true, + _hangupClose: false, + socket: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Object], + _buffer: [Object], + _handle: [Object], + socket: [Object], + encrypted: [Object], + authorized: true, + _controlReleased: true, + parser: null, + _httpMessage: [Circular], + ondata: null, + onend: null, + npnProtocol: undefined }, + connection: + { _readableState: [Object], + readable: true, + domain: null, + _events: [Object], + _maxListeners: 10, + _writableState: [Object], + writable: true, + allowHalfOpen: true, + pair: [Object], + _pending: null, + _pendingEncoding: '', + _pendingCallback: null, + _doneFlag: false, + _retryAfterPartial: false, + _halfRead: false, + _sslOutCb: null, + _resumingSession: false, + _reading: true, + _destroyed: false, + _ended: false, + _finished: false, + _opposite: [Object], + _buffer: [Object], + _handle: [Object], + socket: [Object], + encrypted: [Object], + authorized: true, + _controlReleased: true, + parser: null, + _httpMessage: [Circular], + ondata: null, + onend: null, + npnProtocol: undefined }, + agent: + { domain: null, + _events: [Object], + _maxListeners: 10, + options: {}, + requests: {}, + sockets: [Object], + maxSockets: 5, + createConnection: [Function: createConnection] }, + socketPath: undefined, + method: 'POST', + path: '/repos/CSCI-4830-002-2014/challenge-week-4/issues', + _headers: + { accept: '*/*', + 'user-agent': 'Restler for node.js', + host: 'api.github.com', + 'accept-encoding': 'gzip, deflate', + authorization: 'Basic aWFua3M6JWdUcEdAXjBPRWZXSDNp', + 'content-length': 24 }, + _headerNames: + { accept: 'Accept', + 'user-agent': 'User-Agent', + host: 'Host', + 'accept-encoding': 'Accept-Encoding', + authorization: 'Authorization', + 'content-length': 'Content-Length' }, + parser: null, + res: [Circular] }, + pipe: [Function], + addListener: [Function: addListener], + on: [Function: addListener], + pause: [Function], + resume: [Function], + read: [Function], + rawEncoded: '{"url":"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22","labels_url":"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22/labels{/name}","comments_url":"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22/comments","events_url":"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22/events","html_url":"https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/22","id":43347669,"number":22,"title":"Ian KS issue","user":{"login":"ianks","id":3303032,"avatar_url":"https://avatars.githubusercontent.com/u/3303032?v=2","gravatar_id":"881dfa4c1ac507a08ac32e99fc0de976","url":"https://api.github.com/users/ianks","html_url":"https://github.com/ianks","followers_url":"https://api.github.com/users/ianks/followers","following_url":"https://api.github.com/users/ianks/following{/other_user}","gists_url":"https://api.github.com/users/ianks/gists{/gist_id}","starred_url":"https://api.github.com/users/ianks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ianks/subscriptions","organizations_url":"https://api.github.com/users/ianks/orgs","repos_url":"https://api.github.com/users/ianks/repos","events_url":"https://api.github.com/users/ianks/events{/privacy}","received_events_url":"https://api.github.com/users/ianks/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2014-09-21T22:29:08Z","updated_at":"2014-09-21T22:29:08Z","closed_at":null,"body":null,"closed_by":null}', + raw: } diff --git a/result7.json b/result7.json index 2f12ae3..4488a6c 100644 --- a/result7.json +++ b/result7.json @@ -1 +1,37520 @@ -// Replace this with the data you grabbed from Github (e.g., node github1.js > result1.json) \ No newline at end of file +[ + { + "id": "2300133991", + "type": "ForkEvent", + "actor": { + "id": 5599320, + "login": "jakewhite8", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24308677, + "name": "challenge-week-4", + "full_name": "jakewhite8/challenge-week-4", + "owner": { + "login": "jakewhite8", + "id": 5599320, + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?v=2", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "html_url": "https://github.com/jakewhite8", + "followers_url": "https://api.github.com/users/jakewhite8/followers", + "following_url": "https://api.github.com/users/jakewhite8/following{/other_user}", + "gists_url": "https://api.github.com/users/jakewhite8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakewhite8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakewhite8/subscriptions", + "organizations_url": "https://api.github.com/users/jakewhite8/orgs", + "repos_url": "https://api.github.com/users/jakewhite8/repos", + "events_url": "https://api.github.com/users/jakewhite8/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakewhite8/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakewhite8/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakewhite8/challenge-week-4", + "forks_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/jakewhite8/challenge-week-4/releases{/id}", + "created_at": "2014-09-22T00:17:30Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/jakewhite8/challenge-week-4.git", + "ssh_url": "git@github.com:jakewhite8/challenge-week-4.git", + "clone_url": "https://github.com/jakewhite8/challenge-week-4.git", + "svn_url": "https://github.com/jakewhite8/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-22T00:17:31Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300108797", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 43320390, + "number": 11, + "title": "Test Issue", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 4, + "created_at": "2014-09-20T21:38:27Z", + "updated_at": "2014-09-21T23:28:21Z", + "closed_at": null, + "body": null + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56316747", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11#issuecomment-56316747", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 56316747, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-21T23:28:21Z", + "updated_at": "2014-09-21T23:28:21Z", + "body": "Good to know! I'll look at making a reacted password. Thanks for the tips." + } + }, + "public": true, + "created_at": "2014-09-21T23:28:21Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300106051", + "type": "IssuesEvent", + "actor": { + "id": 3485377, + "login": "sako0938", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/60", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/60/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/60/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/60", + "id": 43348762, + "number": 60, + "title": "This is Sam Korn", + "user": { + "login": "sako0938", + "id": 3485377, + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?v=2", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "html_url": "https://github.com/sako0938", + "followers_url": "https://api.github.com/users/sako0938/followers", + "following_url": "https://api.github.com/users/sako0938/following{/other_user}", + "gists_url": "https://api.github.com/users/sako0938/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sako0938/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sako0938/subscriptions", + "organizations_url": "https://api.github.com/users/sako0938/orgs", + "repos_url": "https://api.github.com/users/sako0938/repos", + "events_url": "https://api.github.com/users/sako0938/events{/privacy}", + "received_events_url": "https://api.github.com/users/sako0938/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T23:23:27Z", + "updated_at": "2014-09-21T23:23:27Z", + "closed_at": null, + "body": "I ate eggs for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-21T23:23:27Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300106011", + "type": "IssuesEvent", + "actor": { + "id": 3485377, + "login": "sako0938", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/59", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/59/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/59/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/59", + "id": 43348759, + "number": 59, + "title": "This is Sam Korn", + "user": { + "login": "sako0938", + "id": 3485377, + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?v=2", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "html_url": "https://github.com/sako0938", + "followers_url": "https://api.github.com/users/sako0938/followers", + "following_url": "https://api.github.com/users/sako0938/following{/other_user}", + "gists_url": "https://api.github.com/users/sako0938/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sako0938/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sako0938/subscriptions", + "organizations_url": "https://api.github.com/users/sako0938/orgs", + "repos_url": "https://api.github.com/users/sako0938/repos", + "events_url": "https://api.github.com/users/sako0938/events{/privacy}", + "received_events_url": "https://api.github.com/users/sako0938/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T23:23:22Z", + "updated_at": "2014-09-21T23:23:22Z", + "closed_at": null, + "body": "I ate eggs for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-21T23:23:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300105963", + "type": "IssuesEvent", + "actor": { + "id": 3485377, + "login": "sako0938", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/58", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/58/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/58/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/58/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/58", + "id": 43348756, + "number": 58, + "title": "This is Sam Korn", + "user": { + "login": "sako0938", + "id": 3485377, + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?v=2", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "html_url": "https://github.com/sako0938", + "followers_url": "https://api.github.com/users/sako0938/followers", + "following_url": "https://api.github.com/users/sako0938/following{/other_user}", + "gists_url": "https://api.github.com/users/sako0938/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sako0938/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sako0938/subscriptions", + "organizations_url": "https://api.github.com/users/sako0938/orgs", + "repos_url": "https://api.github.com/users/sako0938/repos", + "events_url": "https://api.github.com/users/sako0938/events{/privacy}", + "received_events_url": "https://api.github.com/users/sako0938/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T23:23:17Z", + "updated_at": "2014-09-21T23:23:17Z", + "closed_at": null, + "body": "I ate eggs for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-21T23:23:18Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300105079", + "type": "IssuesEvent", + "actor": { + "id": 3485377, + "login": "sako0938", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/57", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/57/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/57/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/57/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/57", + "id": 43348729, + "number": 57, + "title": "You think you have issues? GitHub has issues.", + "user": { + "login": "sako0938", + "id": 3485377, + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?v=2", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "html_url": "https://github.com/sako0938", + "followers_url": "https://api.github.com/users/sako0938/followers", + "following_url": "https://api.github.com/users/sako0938/following{/other_user}", + "gists_url": "https://api.github.com/users/sako0938/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sako0938/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sako0938/subscriptions", + "organizations_url": "https://api.github.com/users/sako0938/orgs", + "repos_url": "https://api.github.com/users/sako0938/repos", + "events_url": "https://api.github.com/users/sako0938/events{/privacy}", + "received_events_url": "https://api.github.com/users/sako0938/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T23:21:36Z", + "updated_at": "2014-09-21T23:21:36Z", + "closed_at": null, + "body": "I'm having a problem with this, Soo many issues." + } + }, + "public": true, + "created_at": "2014-09-21T23:21:36Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300097667", + "type": "ForkEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24307384, + "name": "challenge-week-4", + "full_name": "indiesquidge/challenge-week-4", + "owner": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/indiesquidge/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/indiesquidge/challenge-week-4", + "forks_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/indiesquidge/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T23:06:49Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/indiesquidge/challenge-week-4.git", + "ssh_url": "git@github.com:indiesquidge/challenge-week-4.git", + "clone_url": "https://github.com/indiesquidge/challenge-week-4.git", + "svn_url": "https://github.com/indiesquidge/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T23:06:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300096550", + "type": "IssuesEvent", + "actor": { + "id": 3485377, + "login": "sako0938", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/56", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/56/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/56/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/56/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/56", + "id": 43348386, + "number": 56, + "title": "I am Sam Korn", + "user": { + "login": "sako0938", + "id": 3485377, + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?v=2", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "html_url": "https://github.com/sako0938", + "followers_url": "https://api.github.com/users/sako0938/followers", + "following_url": "https://api.github.com/users/sako0938/following{/other_user}", + "gists_url": "https://api.github.com/users/sako0938/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sako0938/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sako0938/subscriptions", + "organizations_url": "https://api.github.com/users/sako0938/orgs", + "repos_url": "https://api.github.com/users/sako0938/repos", + "events_url": "https://api.github.com/users/sako0938/events{/privacy}", + "received_events_url": "https://api.github.com/users/sako0938/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T23:04:44Z", + "updated_at": "2014-09-21T23:04:44Z", + "closed_at": null, + "body": "I'm having a problem with this, Soo many issues." + } + }, + "public": true, + "created_at": "2014-09-21T23:04:45Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300096339", + "type": "IssuesEvent", + "actor": { + "id": 3485377, + "login": "sako0938", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/55", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/55/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/55/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/55/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/55", + "id": 43348380, + "number": 55, + "title": "Found a bug", + "user": { + "login": "sako0938", + "id": 3485377, + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?v=2", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "html_url": "https://github.com/sako0938", + "followers_url": "https://api.github.com/users/sako0938/followers", + "following_url": "https://api.github.com/users/sako0938/following{/other_user}", + "gists_url": "https://api.github.com/users/sako0938/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sako0938/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sako0938/subscriptions", + "organizations_url": "https://api.github.com/users/sako0938/orgs", + "repos_url": "https://api.github.com/users/sako0938/repos", + "events_url": "https://api.github.com/users/sako0938/events{/privacy}", + "received_events_url": "https://api.github.com/users/sako0938/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T23:04:19Z", + "updated_at": "2014-09-21T23:04:19Z", + "closed_at": null, + "body": "I'm having a problem with this." + } + }, + "public": true, + "created_at": "2014-09-21T23:04:20Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300089947", + "type": "IssuesEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/24", + "id": 43348146, + "number": 24, + "title": "This is a new issue!", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T22:51:49Z", + "updated_at": "2014-09-21T22:52:28Z", + "closed_at": "2014-09-21T22:52:28Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T22:52:28Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300089912", + "type": "IssuesEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/23", + "id": 43348139, + "number": 23, + "title": "This is a new issue!", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T22:51:30Z", + "updated_at": "2014-09-21T22:52:23Z", + "closed_at": "2014-09-21T22:52:23Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T22:52:23Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300089602", + "type": "IssuesEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/24/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/24", + "id": 43348146, + "number": 24, + "title": "This is a new issue!", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T22:51:49Z", + "updated_at": "2014-09-21T22:51:49Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T22:51:49Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300089405", + "type": "IssuesEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/23/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/23", + "id": 43348139, + "number": 23, + "title": "This is a new issue!", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T22:51:30Z", + "updated_at": "2014-09-21T22:51:30Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T22:51:32Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300076776", + "type": "IssuesEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/22/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/22", + "id": 43347669, + "number": 22, + "title": "Ian KS issue", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T22:29:08Z", + "updated_at": "2014-09-21T22:29:08Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T22:29:08Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300076676", + "type": "IssuesEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/21", + "id": 43347625, + "number": 21, + "title": "Ian KS issue", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T22:27:07Z", + "updated_at": "2014-09-21T22:28:57Z", + "closed_at": "2014-09-21T22:28:57Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T22:28:58Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300075604", + "type": "IssuesEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/21/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/21", + "id": 43347625, + "number": 21, + "title": "Ian KS issue", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T22:27:07Z", + "updated_at": "2014-09-21T22:27:07Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T22:27:07Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300067268", + "type": "PullRequestEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "number": 20, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/20", + "id": 21553264, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/20", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/20.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/20.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/20", + "number": 20, + "state": "open", + "locked": false, + "title": "Peyman - Week 4", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-21T22:13:12Z", + "updated_at": "2014-09-21T22:13:12Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/20/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/20/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/20/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/a1679899c0238f26a626b025bbec92a76c897678", + "head": { + "label": "peymanmortazavi:master", + "ref": "master", + "sha": "a1679899c0238f26a626b025bbec92a76c897678", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24297905, + "name": "challenge-week-4", + "full_name": "peymanmortazavi/challenge-week-4", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/challenge-week-4", + "description": "Big Data - Learning Challenge Week 4", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4", + "forks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T17:30:39Z", + "updated_at": "2014-09-21T22:05:59Z", + "pushed_at": "2014-09-21T22:12:01Z", + "git_url": "git://github.com/peymanmortazavi/challenge-week-4.git", + "ssh_url": "git@github.com:peymanmortazavi/challenge-week-4.git", + "clone_url": "https://github.com/peymanmortazavi/challenge-week-4.git", + "svn_url": "https://github.com/peymanmortazavi/challenge-week-4", + "homepage": "", + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "59fbc47d66b4234195a0f9e172fed7be63ecff74", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24125604, + "name": "challenge-week-4", + "full_name": "CSCI-4830-002-2014/challenge-week-4", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T01:55:18Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-4.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "open_issues_count": 13, + "forks": 19, + "open_issues": 13, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/20" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/20" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/20" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/20/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/20/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/20/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/a1679899c0238f26a626b025bbec92a76c897678" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 2, + "additions": 9746, + "deletions": 35, + "changed_files": 14 + } + }, + "public": true, + "created_at": "2014-09-21T22:13:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300060429", + "type": "ForkEvent", + "actor": { + "id": 8550840, + "login": "dano8957", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24305925, + "name": "challenge-week-4", + "full_name": "dano8957/challenge-week-4", + "owner": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dano8957/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dano8957/challenge-week-4", + "forks_url": "https://api.github.com/repos/dano8957/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/dano8957/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dano8957/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dano8957/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/dano8957/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/dano8957/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/dano8957/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/dano8957/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/dano8957/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/dano8957/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/dano8957/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dano8957/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dano8957/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dano8957/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dano8957/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dano8957/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/dano8957/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/dano8957/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/dano8957/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/dano8957/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/dano8957/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dano8957/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dano8957/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dano8957/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dano8957/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/dano8957/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dano8957/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/dano8957/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dano8957/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/dano8957/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/dano8957/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dano8957/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dano8957/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dano8957/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/dano8957/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T22:02:12Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/dano8957/challenge-week-4.git", + "ssh_url": "git@github.com:dano8957/challenge-week-4.git", + "clone_url": "https://github.com/dano8957/challenge-week-4.git", + "svn_url": "https://github.com/dano8957/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T22:02:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300030314", + "type": "PullRequestEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "number": 19, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/19", + "id": 21552641, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/19", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/19.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/19.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/19", + "number": 19, + "state": "open", + "locked": false, + "title": "Brian Newsom Week 4", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-21T21:15:43Z", + "updated_at": "2014-09-21T21:15:43Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/19/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/19/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/19/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/96a3891ad6001363cc7b416775d1a5c288365e40", + "head": { + "label": "BrianNewsom:master", + "ref": "master", + "sha": "96a3891ad6001363cc7b416775d1a5c288365e40", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24207442, + "name": "challenge-week-4", + "full_name": "BrianNewsom/challenge-week-4", + "owner": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BrianNewsom/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/BrianNewsom/challenge-week-4", + "forks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/releases{/id}", + "created_at": "2014-09-18T22:34:12Z", + "updated_at": "2014-09-21T19:10:05Z", + "pushed_at": "2014-09-21T21:15:08Z", + "git_url": "git://github.com/BrianNewsom/challenge-week-4.git", + "ssh_url": "git@github.com:BrianNewsom/challenge-week-4.git", + "clone_url": "https://github.com/BrianNewsom/challenge-week-4.git", + "svn_url": "https://github.com/BrianNewsom/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "59fbc47d66b4234195a0f9e172fed7be63ecff74", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24125604, + "name": "challenge-week-4", + "full_name": "CSCI-4830-002-2014/challenge-week-4", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T01:55:18Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-4.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "open_issues_count": 12, + "forks": 18, + "open_issues": 12, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/19" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/19" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/19" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/19/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/19/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/19/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/96a3891ad6001363cc7b416775d1a5c288365e40" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 16326, + "deletions": 35, + "changed_files": 28 + } + }, + "public": true, + "created_at": "2014-09-21T21:15:44Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300020235", + "type": "IssuesEvent", + "actor": { + "id": 7710325, + "login": "dare599z", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/18", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/18/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/18/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/18/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/18", + "id": 43345301, + "number": 18, + "title": "Custom Issue", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T21:01:12Z", + "updated_at": "2014-09-21T21:01:12Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T21:01:15Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300009440", + "type": "IssuesEvent", + "actor": { + "id": 1976777, + "login": "JoshFerge", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/17", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/17/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/17/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/17", + "id": 43344869, + "number": 17, + "title": "GitHub Challenge 7", + "user": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T20:43:53Z", + "updated_at": "2014-09-21T20:43:53Z", + "closed_at": null, + "body": "Do we have to use restler for this? Or can we use the github API?" + } + }, + "public": true, + "created_at": "2014-09-21T20:43:53Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2300005502", + "type": "IssuesEvent", + "actor": { + "id": 1976777, + "login": "JoshFerge", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/16", + "id": 43344724, + "number": 16, + "title": "JFerge Issue", + "user": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T20:37:49Z", + "updated_at": "2014-09-21T20:37:49Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T20:37:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299966455", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/14", + "id": 43340109, + "number": 14, + "title": "Challenge 6 google refine", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-21T17:17:51Z", + "updated_at": "2014-09-21T19:35:09Z", + "closed_at": null, + "body": "I am currently trying to complete challenge 6 with the given regex, After trying to apply that regex to the occupation field it is always returning null. Do we need to change the regex or should that be the correct statement?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56309819", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/14#issuecomment-56309819", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14", + "id": 56309819, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-21T19:35:09Z", + "updated_at": "2014-09-21T19:35:09Z", + "body": "You'll need to modify the regex. Read through the issues - this issue was solved by some fellow students." + } + }, + "public": true, + "created_at": "2014-09-21T19:35:09Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299966029", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/15", + "id": 43342347, + "number": 15, + "title": "Challenge 6", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T18:53:04Z", + "updated_at": "2014-09-21T19:34:23Z", + "closed_at": "2014-09-21T19:34:23Z", + "body": "I ate breakfast this time." + } + }, + "public": true, + "created_at": "2014-09-21T19:34:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299965434", + "type": "ForkEvent", + "actor": { + "id": 1976777, + "login": "JoshFerge", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24301300, + "name": "challenge-week-4", + "full_name": "JoshFerge/challenge-week-4", + "owner": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/JoshFerge/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/JoshFerge/challenge-week-4", + "forks_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/JoshFerge/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T19:33:17Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/JoshFerge/challenge-week-4.git", + "ssh_url": "git@github.com:JoshFerge/challenge-week-4.git", + "clone_url": "https://github.com/JoshFerge/challenge-week-4.git", + "svn_url": "https://github.com/JoshFerge/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T19:33:17Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299963807", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 43320390, + "number": 11, + "title": "Test Issue", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-20T21:38:27Z", + "updated_at": "2014-09-21T19:30:37Z", + "closed_at": null, + "body": null + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56309662", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11#issuecomment-56309662", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 56309662, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-21T19:30:37Z", + "updated_at": "2014-09-21T19:30:37Z", + "body": "Are you still having this issue Alexia? \"Not Found\" is generally a permissions problem FYI." + } + }, + "public": true, + "created_at": "2014-09-21T19:30:38Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299951708", + "type": "ForkEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24300661, + "name": "challenge-week-4", + "full_name": "ianks/challenge-week-4", + "owner": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ianks/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/ianks/challenge-week-4", + "forks_url": "https://api.github.com/repos/ianks/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/ianks/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ianks/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ianks/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/ianks/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/ianks/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/ianks/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/ianks/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/ianks/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/ianks/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/ianks/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ianks/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ianks/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ianks/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ianks/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ianks/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/ianks/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/ianks/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/ianks/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/ianks/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/ianks/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ianks/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ianks/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ianks/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/ianks/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/ianks/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ianks/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/ianks/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ianks/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/ianks/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/ianks/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ianks/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ianks/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ianks/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/ianks/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T19:11:09Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/ianks/challenge-week-4.git", + "ssh_url": "git@github.com:ianks/challenge-week-4.git", + "clone_url": "https://github.com/ianks/challenge-week-4.git", + "svn_url": "https://github.com/ianks/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T19:11:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299942639", + "type": "ForkEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "forkee": { + "id": 24300280, + "name": "deploy-1", + "full_name": "develra/deploy-1", + "owner": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/develra/deploy-1", + "description": "Looking at your data after the first deployment of the arduino", + "fork": true, + "url": "https://api.github.com/repos/develra/deploy-1", + "forks_url": "https://api.github.com/repos/develra/deploy-1/forks", + "keys_url": "https://api.github.com/repos/develra/deploy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/develra/deploy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/develra/deploy-1/teams", + "hooks_url": "https://api.github.com/repos/develra/deploy-1/hooks", + "issue_events_url": "https://api.github.com/repos/develra/deploy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/develra/deploy-1/events", + "assignees_url": "https://api.github.com/repos/develra/deploy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/develra/deploy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/develra/deploy-1/tags", + "blobs_url": "https://api.github.com/repos/develra/deploy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/develra/deploy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/develra/deploy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/develra/deploy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/develra/deploy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/develra/deploy-1/languages", + "stargazers_url": "https://api.github.com/repos/develra/deploy-1/stargazers", + "contributors_url": "https://api.github.com/repos/develra/deploy-1/contributors", + "subscribers_url": "https://api.github.com/repos/develra/deploy-1/subscribers", + "subscription_url": "https://api.github.com/repos/develra/deploy-1/subscription", + "commits_url": "https://api.github.com/repos/develra/deploy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/develra/deploy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/develra/deploy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/develra/deploy-1/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/develra/deploy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/develra/deploy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/develra/deploy-1/merges", + "archive_url": "https://api.github.com/repos/develra/deploy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/develra/deploy-1/downloads", + "issues_url": "https://api.github.com/repos/develra/deploy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/develra/deploy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/develra/deploy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/develra/deploy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/develra/deploy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/develra/deploy-1/releases{/id}", + "created_at": "2014-09-21T18:56:25Z", + "updated_at": "2014-09-16T03:36:56Z", + "pushed_at": "2014-09-16T03:41:50Z", + "git_url": "git://github.com/develra/deploy-1.git", + "ssh_url": "git@github.com:develra/deploy-1.git", + "clone_url": "https://github.com/develra/deploy-1.git", + "svn_url": "https://github.com/develra/deploy-1", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T18:56:25Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299940656", + "type": "IssuesEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/15/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/15", + "id": 43342347, + "number": 15, + "title": "Challenge 6", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T18:53:04Z", + "updated_at": "2014-09-21T18:53:04Z", + "closed_at": null, + "body": "I ate breakfast this time." + } + }, + "public": true, + "created_at": "2014-09-21T18:53:04Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299934070", + "type": "IssueCommentEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 43320390, + "number": 11, + "title": "Test Issue", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-20T21:38:27Z", + "updated_at": "2014-09-21T18:41:55Z", + "closed_at": null, + "body": null + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56308145", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11#issuecomment-56308145", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 56308145, + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-21T18:41:55Z", + "updated_at": "2014-09-21T18:41:55Z", + "body": "I think it may be due to my password being redacted. I also cleared up the parameters a little bit. " + } + }, + "public": true, + "created_at": "2014-09-21T18:41:55Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299925448", + "type": "IssuesEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23331414, + "name": "CSCI-4830-002-2014/pre-class-survey", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/31", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/31/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/31/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/31/events", + "html_url": "https://github.com/CSCI-4830-002-2014/pre-class-survey/issues/31", + "id": 43341745, + "number": 31, + "title": "test", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T18:27:21Z", + "updated_at": "2014-09-21T18:27:21Z", + "closed_at": null, + "body": "just testing the api" + } + }, + "public": true, + "created_at": "2014-09-21T18:27:21Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299924721", + "type": "IssuesEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23331414, + "name": "CSCI-4830-002-2014/pre-class-survey", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30/events", + "html_url": "https://github.com/CSCI-4830-002-2014/pre-class-survey/issues/30", + "id": 43341715, + "number": 30, + "title": "test", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T18:26:03Z", + "updated_at": "2014-09-21T18:26:16Z", + "closed_at": "2014-09-21T18:26:16Z", + "body": "just testing the api" + } + }, + "public": true, + "created_at": "2014-09-21T18:26:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299924572", + "type": "IssuesEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23331414, + "name": "CSCI-4830-002-2014/pre-class-survey", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/pre-class-survey/issues/30/events", + "html_url": "https://github.com/CSCI-4830-002-2014/pre-class-survey/issues/30", + "id": 43341715, + "number": 30, + "title": "test", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T18:26:03Z", + "updated_at": "2014-09-21T18:26:03Z", + "closed_at": null, + "body": "just testing the api" + } + }, + "public": true, + "created_at": "2014-09-21T18:26:05Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299921253", + "type": "ForkEvent", + "actor": { + "id": 8550866, + "login": "nikitavoskoboynik", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24299271, + "name": "challenge-week-4", + "full_name": "nikitavoskoboynik/challenge-week-4", + "owner": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nikitavoskoboynik/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4", + "forks_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T18:20:26Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/nikitavoskoboynik/challenge-week-4.git", + "ssh_url": "git@github.com:nikitavoskoboynik/challenge-week-4.git", + "clone_url": "https://github.com/nikitavoskoboynik/challenge-week-4.git", + "svn_url": "https://github.com/nikitavoskoboynik/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T18:20:27Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299920347", + "type": "PullRequestEvent", + "actor": { + "id": 8550866, + "login": "nikitavoskoboynik", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 54, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/54", + "id": 21550807, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/54", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/54.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/54.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/54", + "number": 54, + "state": "open", + "locked": false, + "title": "done", + "user": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-21T18:18:53Z", + "updated_at": "2014-09-21T18:18:53Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/54/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/54/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/54/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/f3c543b260b977af49eb675f98915978167eb236", + "head": { + "label": "nikitavoskoboynik:master", + "ref": "master", + "sha": "f3c543b260b977af49eb675f98915978167eb236", + "user": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24028160, + "name": "challenge-week-3", + "full_name": "nikitavoskoboynik/challenge-week-3", + "owner": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nikitavoskoboynik/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3", + "forks_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T17:22:27Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-21T18:18:27Z", + "git_url": "git://github.com/nikitavoskoboynik/challenge-week-3.git", + "ssh_url": "git@github.com:nikitavoskoboynik/challenge-week-3.git", + "clone_url": "https://github.com/nikitavoskoboynik/challenge-week-3.git", + "svn_url": "https://github.com/nikitavoskoboynik/challenge-week-3", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 32, + "forks": 22, + "open_issues": 32, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/54" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/54" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/54" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/54/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/54/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/54/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/f3c543b260b977af49eb675f98915978167eb236" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 4, + "deletions": 6, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-21T18:18:53Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299919596", + "type": "PullRequestEvent", + "actor": { + "id": 8550866, + "login": "nikitavoskoboynik", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 28, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/28", + "id": 21550797, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/28", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/28.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/28.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/28", + "number": 28, + "state": "open", + "locked": false, + "title": "Finished", + "user": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-21T18:17:42Z", + "updated_at": "2014-09-21T18:17:42Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/28/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/28/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/28/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/edfa6129e8f4236b76ec031a5f3ead729f9aff09", + "head": { + "label": "nikitavoskoboynik:master", + "ref": "master", + "sha": "edfa6129e8f4236b76ec031a5f3ead729f9aff09", + "user": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24298745, + "name": "project-1-make-a", + "full_name": "nikitavoskoboynik/project-1-make-a", + "owner": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nikitavoskoboynik/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a", + "forks_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/releases{/id}", + "created_at": "2014-09-21T18:01:10Z", + "updated_at": "2014-09-21T18:17:17Z", + "pushed_at": "2014-09-21T18:17:17Z", + "git_url": "git://github.com/nikitavoskoboynik/project-1-make-a.git", + "ssh_url": "git@github.com:nikitavoskoboynik/project-1-make-a.git", + "clone_url": "https://github.com/nikitavoskoboynik/project-1-make-a.git", + "svn_url": "https://github.com/nikitavoskoboynik/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "open_issues_count": 20, + "forks": 20, + "open_issues": 20, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/28" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/28" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/28" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/28/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/28/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/28/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/edfa6129e8f4236b76ec031a5f3ead729f9aff09" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 2, + "additions": 62, + "deletions": 77, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2014-09-21T18:17:42Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299909640", + "type": "ForkEvent", + "actor": { + "id": 8550866, + "login": "nikitavoskoboynik", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24298745, + "name": "project-1-make-a", + "full_name": "nikitavoskoboynik/project-1-make-a", + "owner": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nikitavoskoboynik/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a", + "forks_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/nikitavoskoboynik/project-1-make-a/releases{/id}", + "created_at": "2014-09-21T18:01:10Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/nikitavoskoboynik/project-1-make-a.git", + "ssh_url": "git@github.com:nikitavoskoboynik/project-1-make-a.git", + "clone_url": "https://github.com/nikitavoskoboynik/project-1-make-a.git", + "svn_url": "https://github.com/nikitavoskoboynik/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T18:01:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299891247", + "type": "ForkEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24297905, + "name": "challenge-week-4", + "full_name": "peymanmortazavi/challenge-week-4", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4", + "forks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T17:30:39Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/peymanmortazavi/challenge-week-4.git", + "ssh_url": "git@github.com:peymanmortazavi/challenge-week-4.git", + "clone_url": "https://github.com/peymanmortazavi/challenge-week-4.git", + "svn_url": "https://github.com/peymanmortazavi/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T17:30:39Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299887916", + "type": "ForkEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "forkee": { + "id": 24297732, + "name": "deploy-1", + "full_name": "jakecharland/deploy-1", + "owner": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakecharland/deploy-1", + "description": "Looking at your data after the first deployment of the arduino", + "fork": true, + "url": "https://api.github.com/repos/jakecharland/deploy-1", + "forks_url": "https://api.github.com/repos/jakecharland/deploy-1/forks", + "keys_url": "https://api.github.com/repos/jakecharland/deploy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakecharland/deploy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakecharland/deploy-1/teams", + "hooks_url": "https://api.github.com/repos/jakecharland/deploy-1/hooks", + "issue_events_url": "https://api.github.com/repos/jakecharland/deploy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakecharland/deploy-1/events", + "assignees_url": "https://api.github.com/repos/jakecharland/deploy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakecharland/deploy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakecharland/deploy-1/tags", + "blobs_url": "https://api.github.com/repos/jakecharland/deploy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakecharland/deploy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakecharland/deploy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakecharland/deploy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakecharland/deploy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakecharland/deploy-1/languages", + "stargazers_url": "https://api.github.com/repos/jakecharland/deploy-1/stargazers", + "contributors_url": "https://api.github.com/repos/jakecharland/deploy-1/contributors", + "subscribers_url": "https://api.github.com/repos/jakecharland/deploy-1/subscribers", + "subscription_url": "https://api.github.com/repos/jakecharland/deploy-1/subscription", + "commits_url": "https://api.github.com/repos/jakecharland/deploy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakecharland/deploy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakecharland/deploy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakecharland/deploy-1/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakecharland/deploy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakecharland/deploy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakecharland/deploy-1/merges", + "archive_url": "https://api.github.com/repos/jakecharland/deploy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakecharland/deploy-1/downloads", + "issues_url": "https://api.github.com/repos/jakecharland/deploy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakecharland/deploy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakecharland/deploy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakecharland/deploy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakecharland/deploy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/jakecharland/deploy-1/releases{/id}", + "created_at": "2014-09-21T17:24:53Z", + "updated_at": "2014-09-16T03:36:56Z", + "pushed_at": "2014-09-16T03:41:50Z", + "git_url": "git://github.com/jakecharland/deploy-1.git", + "ssh_url": "git@github.com:jakecharland/deploy-1.git", + "clone_url": "https://github.com/jakecharland/deploy-1.git", + "svn_url": "https://github.com/jakecharland/deploy-1", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T17:24:53Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299883815", + "type": "IssuesEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/14/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/14", + "id": 43340109, + "number": 14, + "title": "Challenge 6 google refine", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T17:17:51Z", + "updated_at": "2014-09-21T17:17:51Z", + "closed_at": null, + "body": "I am currently trying to complete challenge 6 with the given regex, After trying to apply that regex to the occupation field it is always returning null. Do we need to change the regex or should that be the correct statement?" + } + }, + "public": true, + "created_at": "2014-09-21T17:17:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299855093", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 43320390, + "number": 11, + "title": "Test Issue", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-20T21:38:27Z", + "updated_at": "2014-09-21T16:29:22Z", + "closed_at": null, + "body": null + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56304080", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11#issuecomment-56304080", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 56304080, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-21T16:29:22Z", + "updated_at": "2014-09-21T16:29:22Z", + "body": "Nice job! I kept getting:\r\n```\r\n{ message: 'Not Found',\r\n documentation_url: 'https://developer.github.com/v3/issues/#create-an-issue' }\r\n```\r\nOh well, haha." + } + }, + "public": true, + "created_at": "2014-09-21T16:29:23Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299847424", + "type": "ForkEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24295970, + "name": "challenge-week-4", + "full_name": "jakecharland/challenge-week-4", + "owner": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakecharland/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakecharland/challenge-week-4", + "forks_url": "https://api.github.com/repos/jakecharland/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/jakecharland/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakecharland/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakecharland/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/jakecharland/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/jakecharland/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakecharland/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/jakecharland/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakecharland/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakecharland/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/jakecharland/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakecharland/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakecharland/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakecharland/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakecharland/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakecharland/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/jakecharland/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/jakecharland/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/jakecharland/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/jakecharland/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/jakecharland/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakecharland/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakecharland/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakecharland/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakecharland/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakecharland/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakecharland/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/jakecharland/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakecharland/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/jakecharland/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakecharland/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakecharland/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakecharland/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakecharland/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/jakecharland/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T16:16:03Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/jakecharland/challenge-week-4.git", + "ssh_url": "git@github.com:jakecharland/challenge-week-4.git", + "clone_url": "https://github.com/jakecharland/challenge-week-4.git", + "svn_url": "https://github.com/jakecharland/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T16:16:03Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299843489", + "type": "IssuesEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/13", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/13/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/13/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/13/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/13", + "id": 43338573, + "number": 13, + "title": "Week 4 reslter issue", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-21T16:09:38Z", + "updated_at": "2014-09-21T16:09:38Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-21T16:09:39Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299818850", + "type": "ForkEvent", + "actor": { + "id": 7998352, + "login": "LFJake", + "gravatar_id": "042ae947a2b906bb8e0f3ac985ce1bf8", + "url": "https://api.github.com/users/LFJake", + "avatar_url": "https://avatars.githubusercontent.com/u/7998352?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24294719, + "name": "challenge-week-4", + "full_name": "LFJake/challenge-week-4", + "owner": { + "login": "LFJake", + "id": 7998352, + "avatar_url": "https://avatars.githubusercontent.com/u/7998352?v=2", + "gravatar_id": "042ae947a2b906bb8e0f3ac985ce1bf8", + "url": "https://api.github.com/users/LFJake", + "html_url": "https://github.com/LFJake", + "followers_url": "https://api.github.com/users/LFJake/followers", + "following_url": "https://api.github.com/users/LFJake/following{/other_user}", + "gists_url": "https://api.github.com/users/LFJake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LFJake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LFJake/subscriptions", + "organizations_url": "https://api.github.com/users/LFJake/orgs", + "repos_url": "https://api.github.com/users/LFJake/repos", + "events_url": "https://api.github.com/users/LFJake/events{/privacy}", + "received_events_url": "https://api.github.com/users/LFJake/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LFJake/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LFJake/challenge-week-4", + "forks_url": "https://api.github.com/repos/LFJake/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/LFJake/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LFJake/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LFJake/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/LFJake/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/LFJake/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/LFJake/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/LFJake/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/LFJake/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/LFJake/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/LFJake/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LFJake/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LFJake/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LFJake/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LFJake/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LFJake/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/LFJake/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/LFJake/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/LFJake/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/LFJake/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/LFJake/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LFJake/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LFJake/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LFJake/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LFJake/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/LFJake/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LFJake/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/LFJake/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LFJake/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/LFJake/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/LFJake/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LFJake/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LFJake/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LFJake/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/LFJake/challenge-week-4/releases{/id}", + "created_at": "2014-09-21T15:28:36Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/LFJake/challenge-week-4.git", + "ssh_url": "git@github.com:LFJake/challenge-week-4.git", + "clone_url": "https://github.com/LFJake/challenge-week-4.git", + "svn_url": "https://github.com/LFJake/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-21T15:28:37Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299790489", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 43169169, + "number": 6, + "title": "npm test?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-18T19:25:23Z", + "updated_at": "2014-09-21T14:39:49Z", + "closed_at": "2014-09-21T14:39:49Z", + "body": "Did anyone have any luck with 'npm test' after installing restler? I'm on a Mac and got the following output:\r\n\r\n```\r\n$ npm install restler\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n\r\n$ npm test\r\nnpm ERR! Error: ENOENT, open '/Users/bongo/package.json'\r\nnpm ERR! If you need help, you may report this *entire* log,\r\nnpm ERR! including the npm and node versions, at:\r\nnpm ERR! \r\n\r\nnpm ERR! System Darwin 13.3.0\r\nnpm ERR! command \"node\" \"/usr/local/bin/npm\" \"test\"\r\nnpm ERR! cwd /Users/bongo\r\nnpm ERR! node -v v0.10.31\r\nnpm ERR! npm -v 1.4.23\r\nnpm ERR! path /Users/bongo/package.json\r\nnpm ERR! code ENOENT\r\nnpm ERR! errno 34\r\nnpm ERR! \r\nnpm ERR! Additional logging details can be found in:\r\nnpm ERR! /Users/bongo/npm-debug.log\r\nnpm ERR! not ok code 0\r\n```\r\nI downloaded a package.json into /Users/bong/ since that's what it was looking for. But I still got the following error:\r\n```\r\n$ npm test\r\n\r\n> bootstrap@3.2.0 test /Users/bongo\r\n> grunt test\r\n\r\nsh: grunt: command not found\r\nnpm ERR! Test failed. See above for more details.\r\nnpm ERR! not ok code 0\r\n```\r\nAnd when I tried installing one more time...\r\n```\r\n$ npm install restler\r\nnpm WARN package.json bootstrap@3.2.0 No README data\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n```" + } + }, + "public": true, + "created_at": "2014-09-21T14:39:49Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299790488", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 43169169, + "number": 6, + "title": "npm test?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-18T19:25:23Z", + "updated_at": "2014-09-21T14:39:49Z", + "closed_at": "2014-09-21T14:39:49Z", + "body": "Did anyone have any luck with 'npm test' after installing restler? I'm on a Mac and got the following output:\r\n\r\n```\r\n$ npm install restler\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n\r\n$ npm test\r\nnpm ERR! Error: ENOENT, open '/Users/bongo/package.json'\r\nnpm ERR! If you need help, you may report this *entire* log,\r\nnpm ERR! including the npm and node versions, at:\r\nnpm ERR! \r\n\r\nnpm ERR! System Darwin 13.3.0\r\nnpm ERR! command \"node\" \"/usr/local/bin/npm\" \"test\"\r\nnpm ERR! cwd /Users/bongo\r\nnpm ERR! node -v v0.10.31\r\nnpm ERR! npm -v 1.4.23\r\nnpm ERR! path /Users/bongo/package.json\r\nnpm ERR! code ENOENT\r\nnpm ERR! errno 34\r\nnpm ERR! \r\nnpm ERR! Additional logging details can be found in:\r\nnpm ERR! /Users/bongo/npm-debug.log\r\nnpm ERR! not ok code 0\r\n```\r\nI downloaded a package.json into /Users/bong/ since that's what it was looking for. But I still got the following error:\r\n```\r\n$ npm test\r\n\r\n> bootstrap@3.2.0 test /Users/bongo\r\n> grunt test\r\n\r\nsh: grunt: command not found\r\nnpm ERR! Test failed. See above for more details.\r\nnpm ERR! not ok code 0\r\n```\r\nAnd when I tried installing one more time...\r\n```\r\n$ npm install restler\r\nnpm WARN package.json bootstrap@3.2.0 No README data\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n```" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56300673", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6#issuecomment-56300673", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 56300673, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-21T14:39:49Z", + "updated_at": "2014-09-21T14:39:49Z", + "body": "Okay, the npm tests still don't work, but it seems to be running the restler code fine. Thanks for all the help!" + } + }, + "public": true, + "created_at": "2014-09-21T14:39:49Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299766447", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/5", + "id": 43166817, + "number": 5, + "title": "Show and tell article?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T19:00:06Z", + "updated_at": "2014-09-21T13:57:02Z", + "closed_at": "2014-09-21T13:57:02Z", + "body": "The directions for challenge 4 say to find a political article, while the read me has the following:\r\n\r\nhttp://link-to-an-interesting-article-about-the-notion-of-quantified-self\r\n\r\nI'm assuming we should find an article regarding the \"notion of quantified self\"?" + } + }, + "public": true, + "created_at": "2014-09-21T13:57:02Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299404723", + "type": "ForkEvent", + "actor": { + "id": 3269358, + "login": "LoganBates", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24276835, + "name": "challenge-week-4", + "full_name": "LoganBates/challenge-week-4", + "owner": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LoganBates/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LoganBates/challenge-week-4", + "forks_url": "https://api.github.com/repos/LoganBates/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/LoganBates/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LoganBates/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LoganBates/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/LoganBates/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/LoganBates/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/LoganBates/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/LoganBates/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/LoganBates/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/LoganBates/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/LoganBates/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LoganBates/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LoganBates/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LoganBates/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LoganBates/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LoganBates/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/LoganBates/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/LoganBates/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/LoganBates/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/LoganBates/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/LoganBates/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LoganBates/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LoganBates/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LoganBates/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LoganBates/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/LoganBates/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LoganBates/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/LoganBates/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LoganBates/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/LoganBates/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/LoganBates/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LoganBates/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LoganBates/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LoganBates/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/LoganBates/challenge-week-4/releases{/id}", + "created_at": "2014-09-20T23:11:27Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/LoganBates/challenge-week-4.git", + "ssh_url": "git@github.com:LoganBates/challenge-week-4.git", + "clone_url": "https://github.com/LoganBates/challenge-week-4.git", + "svn_url": "https://github.com/LoganBates/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-20T23:11:28Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299364858", + "type": "ForkEvent", + "actor": { + "id": 7736082, + "login": "Irfann1", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "forkee": { + "id": 24275367, + "name": "deploy-1", + "full_name": "Irfann1/deploy-1", + "owner": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Irfann1/deploy-1", + "description": "Looking at your data after the first deployment of the arduino", + "fork": true, + "url": "https://api.github.com/repos/Irfann1/deploy-1", + "forks_url": "https://api.github.com/repos/Irfann1/deploy-1/forks", + "keys_url": "https://api.github.com/repos/Irfann1/deploy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Irfann1/deploy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Irfann1/deploy-1/teams", + "hooks_url": "https://api.github.com/repos/Irfann1/deploy-1/hooks", + "issue_events_url": "https://api.github.com/repos/Irfann1/deploy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/Irfann1/deploy-1/events", + "assignees_url": "https://api.github.com/repos/Irfann1/deploy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/Irfann1/deploy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/Irfann1/deploy-1/tags", + "blobs_url": "https://api.github.com/repos/Irfann1/deploy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Irfann1/deploy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Irfann1/deploy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Irfann1/deploy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Irfann1/deploy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Irfann1/deploy-1/languages", + "stargazers_url": "https://api.github.com/repos/Irfann1/deploy-1/stargazers", + "contributors_url": "https://api.github.com/repos/Irfann1/deploy-1/contributors", + "subscribers_url": "https://api.github.com/repos/Irfann1/deploy-1/subscribers", + "subscription_url": "https://api.github.com/repos/Irfann1/deploy-1/subscription", + "commits_url": "https://api.github.com/repos/Irfann1/deploy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Irfann1/deploy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Irfann1/deploy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Irfann1/deploy-1/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/Irfann1/deploy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/Irfann1/deploy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Irfann1/deploy-1/merges", + "archive_url": "https://api.github.com/repos/Irfann1/deploy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Irfann1/deploy-1/downloads", + "issues_url": "https://api.github.com/repos/Irfann1/deploy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/Irfann1/deploy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Irfann1/deploy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Irfann1/deploy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Irfann1/deploy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/Irfann1/deploy-1/releases{/id}", + "created_at": "2014-09-20T21:49:10Z", + "updated_at": "2014-09-16T03:36:56Z", + "pushed_at": "2014-09-16T03:41:50Z", + "git_url": "git://github.com/Irfann1/deploy-1.git", + "ssh_url": "git@github.com:Irfann1/deploy-1.git", + "clone_url": "https://github.com/Irfann1/deploy-1.git", + "svn_url": "https://github.com/Irfann1/deploy-1", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-20T21:49:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299364774", + "type": "ForkEvent", + "actor": { + "id": 7736082, + "login": "Irfann1", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24275365, + "name": "challenge-week-4", + "full_name": "Irfann1/challenge-week-4", + "owner": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Irfann1/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/Irfann1/challenge-week-4", + "forks_url": "https://api.github.com/repos/Irfann1/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/Irfann1/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Irfann1/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Irfann1/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/Irfann1/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/Irfann1/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/Irfann1/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/Irfann1/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/Irfann1/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/Irfann1/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/Irfann1/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Irfann1/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Irfann1/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Irfann1/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Irfann1/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Irfann1/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/Irfann1/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/Irfann1/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/Irfann1/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/Irfann1/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/Irfann1/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Irfann1/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Irfann1/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Irfann1/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/Irfann1/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/Irfann1/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Irfann1/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/Irfann1/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Irfann1/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/Irfann1/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/Irfann1/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Irfann1/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Irfann1/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Irfann1/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/Irfann1/challenge-week-4/releases{/id}", + "created_at": "2014-09-20T21:48:57Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/Irfann1/challenge-week-4.git", + "ssh_url": "git@github.com:Irfann1/challenge-week-4.git", + "clone_url": "https://github.com/Irfann1/challenge-week-4.git", + "svn_url": "https://github.com/Irfann1/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-20T21:48:58Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299364359", + "type": "PullRequestEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "number": 12, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/12", + "id": 21542050, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/12", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/12.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/12.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/12", + "number": 12, + "state": "open", + "locked": false, + "title": "Finished 100/100", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-20T21:48:08Z", + "updated_at": "2014-09-20T21:48:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/12/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/12/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/12/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/c45a0fec80f5b94b7edf820a0c6a552fb4f6717a", + "head": { + "label": "antsankov:master", + "ref": "master", + "sha": "c45a0fec80f5b94b7edf820a0c6a552fb4f6717a", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24158315, + "name": "challenge-week-4", + "full_name": "antsankov/challenge-week-4", + "owner": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/antsankov/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/antsankov/challenge-week-4", + "forks_url": "https://api.github.com/repos/antsankov/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/antsankov/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/antsankov/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/antsankov/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/antsankov/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/antsankov/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/antsankov/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/antsankov/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/antsankov/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/antsankov/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/antsankov/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/antsankov/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/antsankov/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/antsankov/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/antsankov/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/antsankov/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/antsankov/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/antsankov/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/antsankov/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/antsankov/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/antsankov/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/antsankov/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/antsankov/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/antsankov/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/antsankov/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/antsankov/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/antsankov/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/antsankov/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/antsankov/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/antsankov/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T19:06:07Z", + "updated_at": "2014-09-17T20:30:50Z", + "pushed_at": "2014-09-20T21:45:37Z", + "git_url": "git://github.com/antsankov/challenge-week-4.git", + "ssh_url": "git@github.com:antsankov/challenge-week-4.git", + "clone_url": "https://github.com/antsankov/challenge-week-4.git", + "svn_url": "https://github.com/antsankov/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "59fbc47d66b4234195a0f9e172fed7be63ecff74", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24125604, + "name": "challenge-week-4", + "full_name": "CSCI-4830-002-2014/challenge-week-4", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T01:55:18Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-4.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 11, + "mirror_url": null, + "open_issues_count": 8, + "forks": 11, + "open_issues": 8, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/12" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/12" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/12" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/12/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/12/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/12/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/c45a0fec80f5b94b7edf820a0c6a552fb4f6717a" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 10661, + "deletions": 33, + "changed_files": 28 + } + }, + "public": true, + "created_at": "2014-09-20T21:48:08Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299359178", + "type": "IssuesEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/11/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/11", + "id": 43320390, + "number": 11, + "title": "Test Issue", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-20T21:38:27Z", + "updated_at": "2014-09-20T21:38:27Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-20T21:38:27Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299347814", + "type": "IssuesEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/issues/1", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/issues/1/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/issues/1/events", + "html_url": "https://github.com/CSCI-4830-002-2014/deploy-1/issues/1", + "id": 43319942, + "number": 1, + "title": "Is this still due 9/21?", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-20T21:17:33Z", + "updated_at": "2014-09-20T21:17:33Z", + "closed_at": null, + "body": "I was under the impression that we were moving this back till we could get proper battery containers. " + } + }, + "public": true, + "created_at": "2014-09-20T21:17:34Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299329750", + "type": "ForkEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "forkee": { + "id": 24274010, + "name": "deploy-1", + "full_name": "thefyk/deploy-1", + "owner": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/thefyk/deploy-1", + "description": "Looking at your data after the first deployment of the arduino", + "fork": true, + "url": "https://api.github.com/repos/thefyk/deploy-1", + "forks_url": "https://api.github.com/repos/thefyk/deploy-1/forks", + "keys_url": "https://api.github.com/repos/thefyk/deploy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/thefyk/deploy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/thefyk/deploy-1/teams", + "hooks_url": "https://api.github.com/repos/thefyk/deploy-1/hooks", + "issue_events_url": "https://api.github.com/repos/thefyk/deploy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/thefyk/deploy-1/events", + "assignees_url": "https://api.github.com/repos/thefyk/deploy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/thefyk/deploy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/thefyk/deploy-1/tags", + "blobs_url": "https://api.github.com/repos/thefyk/deploy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/thefyk/deploy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/thefyk/deploy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/thefyk/deploy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/thefyk/deploy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/thefyk/deploy-1/languages", + "stargazers_url": "https://api.github.com/repos/thefyk/deploy-1/stargazers", + "contributors_url": "https://api.github.com/repos/thefyk/deploy-1/contributors", + "subscribers_url": "https://api.github.com/repos/thefyk/deploy-1/subscribers", + "subscription_url": "https://api.github.com/repos/thefyk/deploy-1/subscription", + "commits_url": "https://api.github.com/repos/thefyk/deploy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/thefyk/deploy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/thefyk/deploy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/thefyk/deploy-1/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/thefyk/deploy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/thefyk/deploy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/thefyk/deploy-1/merges", + "archive_url": "https://api.github.com/repos/thefyk/deploy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/thefyk/deploy-1/downloads", + "issues_url": "https://api.github.com/repos/thefyk/deploy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/thefyk/deploy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/thefyk/deploy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/thefyk/deploy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/thefyk/deploy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/thefyk/deploy-1/releases{/id}", + "created_at": "2014-09-20T20:44:16Z", + "updated_at": "2014-09-16T03:36:56Z", + "pushed_at": "2014-09-16T03:41:50Z", + "git_url": "git://github.com/thefyk/deploy-1.git", + "ssh_url": "git@github.com:thefyk/deploy-1.git", + "clone_url": "https://github.com/thefyk/deploy-1.git", + "svn_url": "https://github.com/thefyk/deploy-1", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-20T20:44:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2299326506", + "type": "IssuesEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/53", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/53/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/53/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/53/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/53", + "id": 43319100, + "number": 53, + "title": "This is Michael Fyk", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-20T20:38:07Z", + "updated_at": "2014-09-20T20:38:07Z", + "closed_at": null, + "body": "New issue" + } + }, + "public": true, + "created_at": "2014-09-20T20:38:08Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2298856231", + "type": "ForkEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24253259, + "name": "challenge-week-4", + "full_name": "thefyk/challenge-week-4", + "owner": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/thefyk/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/thefyk/challenge-week-4", + "forks_url": "https://api.github.com/repos/thefyk/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/thefyk/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/thefyk/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/thefyk/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/thefyk/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/thefyk/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/thefyk/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/thefyk/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/thefyk/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/thefyk/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/thefyk/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/thefyk/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/thefyk/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/thefyk/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/thefyk/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/thefyk/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/thefyk/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/thefyk/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/thefyk/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/thefyk/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/thefyk/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/thefyk/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/thefyk/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/thefyk/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/thefyk/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/thefyk/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/thefyk/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/thefyk/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/thefyk/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/thefyk/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/thefyk/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/thefyk/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/thefyk/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/thefyk/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/thefyk/challenge-week-4/releases{/id}", + "created_at": "2014-09-20T04:01:46Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/thefyk/challenge-week-4.git", + "ssh_url": "git@github.com:thefyk/challenge-week-4.git", + "clone_url": "https://github.com/thefyk/challenge-week-4.git", + "svn_url": "https://github.com/thefyk/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-20T04:01:47Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2298613434", + "type": "IssueCommentEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/4", + "id": 43161875, + "number": 4, + "title": "Can't Get Open Refine to Install", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T18:08:12Z", + "updated_at": "2014-09-19T22:21:33Z", + "closed_at": "2014-09-19T22:21:33Z", + "body": "Hi all,\r\n\r\nWhenever I download the .dmg from the download page for my Mac and install it, my computer says \"'Google Refine' is damaged and cannot be opened. You should move it to the trash.\" I've tried installing it five times now. Mac users, how did you get it working on your Mac? " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56243485", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/4#issuecomment-56243485", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4", + "id": 56243485, + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-19T22:21:33Z", + "updated_at": "2014-09-19T22:21:33Z", + "body": "That fixed my issue. Thanks!" + } + }, + "public": true, + "created_at": "2014-09-19T22:21:34Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2298613435", + "type": "IssuesEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/4", + "id": 43161875, + "number": 4, + "title": "Can't Get Open Refine to Install", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T18:08:12Z", + "updated_at": "2014-09-19T22:21:33Z", + "closed_at": "2014-09-19T22:21:33Z", + "body": "Hi all,\r\n\r\nWhenever I download the .dmg from the download page for my Mac and install it, my computer says \"'Google Refine' is damaged and cannot be opened. You should move it to the trash.\" I've tried installing it five times now. Mac users, how did you get it working on your Mac? " + } + }, + "public": true, + "created_at": "2014-09-19T22:21:34Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2298037114", + "type": "ForkEvent", + "actor": { + "id": 8551273, + "login": "adrian-chen", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24238244, + "name": "challenge-week-4", + "full_name": "adrian-chen/challenge-week-4", + "owner": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/adrian-chen/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/adrian-chen/challenge-week-4", + "forks_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/adrian-chen/challenge-week-4/releases{/id}", + "created_at": "2014-09-19T17:08:12Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/adrian-chen/challenge-week-4.git", + "ssh_url": "git@github.com:adrian-chen/challenge-week-4.git", + "clone_url": "https://github.com/adrian-chen/challenge-week-4.git", + "svn_url": "https://github.com/adrian-chen/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-19T17:08:13Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296971923", + "type": "ForkEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24218242, + "name": "challenge-week-4", + "full_name": "nfejes/challenge-week-4", + "owner": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nfejes/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nfejes/challenge-week-4", + "forks_url": "https://api.github.com/repos/nfejes/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/nfejes/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nfejes/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nfejes/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/nfejes/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/nfejes/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/nfejes/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/nfejes/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/nfejes/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/nfejes/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/nfejes/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nfejes/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nfejes/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nfejes/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nfejes/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nfejes/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/nfejes/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/nfejes/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/nfejes/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/nfejes/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/nfejes/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nfejes/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nfejes/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nfejes/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nfejes/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/nfejes/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nfejes/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/nfejes/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nfejes/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/nfejes/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/nfejes/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nfejes/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nfejes/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nfejes/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/nfejes/challenge-week-4/releases{/id}", + "created_at": "2014-09-19T06:06:48Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/nfejes/challenge-week-4.git", + "ssh_url": "git@github.com:nfejes/challenge-week-4.git", + "clone_url": "https://github.com/nfejes/challenge-week-4.git", + "svn_url": "https://github.com/nfejes/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-19T06:06:49Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296859280", + "type": "PullRequestEvent", + "actor": { + "id": 3420199, + "login": "rodenr", + "gravatar_id": "b00ee0492ce05538c6840d32c9ca7018", + "url": "https://api.github.com/users/rodenr", + "avatar_url": "https://avatars.githubusercontent.com/u/3420199?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 27, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/27", + "id": 21476610, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/27", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/27.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/27.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/27", + "number": 27, + "state": "open", + "locked": false, + "title": "MY PULL REQUEST", + "user": { + "login": "rodenr", + "id": 3420199, + "avatar_url": "https://avatars.githubusercontent.com/u/3420199?v=2", + "gravatar_id": "b00ee0492ce05538c6840d32c9ca7018", + "url": "https://api.github.com/users/rodenr", + "html_url": "https://github.com/rodenr", + "followers_url": "https://api.github.com/users/rodenr/followers", + "following_url": "https://api.github.com/users/rodenr/following{/other_user}", + "gists_url": "https://api.github.com/users/rodenr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rodenr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rodenr/subscriptions", + "organizations_url": "https://api.github.com/users/rodenr/orgs", + "repos_url": "https://api.github.com/users/rodenr/repos", + "events_url": "https://api.github.com/users/rodenr/events{/privacy}", + "received_events_url": "https://api.github.com/users/rodenr/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-19T03:49:20Z", + "updated_at": "2014-09-19T03:49:20Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/27/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/27/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/27/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/53021c1610634194b4e959685bbc9eb336585ae8", + "head": { + "label": "rodenr:master", + "ref": "master", + "sha": "53021c1610634194b4e959685bbc9eb336585ae8", + "user": { + "login": "rodenr", + "id": 3420199, + "avatar_url": "https://avatars.githubusercontent.com/u/3420199?v=2", + "gravatar_id": "b00ee0492ce05538c6840d32c9ca7018", + "url": "https://api.github.com/users/rodenr", + "html_url": "https://github.com/rodenr", + "followers_url": "https://api.github.com/users/rodenr/followers", + "following_url": "https://api.github.com/users/rodenr/following{/other_user}", + "gists_url": "https://api.github.com/users/rodenr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rodenr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rodenr/subscriptions", + "organizations_url": "https://api.github.com/users/rodenr/orgs", + "repos_url": "https://api.github.com/users/rodenr/repos", + "events_url": "https://api.github.com/users/rodenr/events{/privacy}", + "received_events_url": "https://api.github.com/users/rodenr/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23815148, + "name": "project-1-make-a", + "full_name": "rodenr/project-1-make-a", + "owner": { + "login": "rodenr", + "id": 3420199, + "avatar_url": "https://avatars.githubusercontent.com/u/3420199?v=2", + "gravatar_id": "b00ee0492ce05538c6840d32c9ca7018", + "url": "https://api.github.com/users/rodenr", + "html_url": "https://github.com/rodenr", + "followers_url": "https://api.github.com/users/rodenr/followers", + "following_url": "https://api.github.com/users/rodenr/following{/other_user}", + "gists_url": "https://api.github.com/users/rodenr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rodenr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rodenr/subscriptions", + "organizations_url": "https://api.github.com/users/rodenr/orgs", + "repos_url": "https://api.github.com/users/rodenr/repos", + "events_url": "https://api.github.com/users/rodenr/events{/privacy}", + "received_events_url": "https://api.github.com/users/rodenr/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/rodenr/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/rodenr/project-1-make-a", + "forks_url": "https://api.github.com/repos/rodenr/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/rodenr/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/rodenr/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/rodenr/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/rodenr/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/rodenr/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/rodenr/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/rodenr/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/rodenr/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/rodenr/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/rodenr/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/rodenr/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/rodenr/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/rodenr/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/rodenr/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/rodenr/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/rodenr/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/rodenr/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/rodenr/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/rodenr/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/rodenr/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/rodenr/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/rodenr/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/rodenr/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/rodenr/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/rodenr/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/rodenr/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/rodenr/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/rodenr/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/rodenr/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/rodenr/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/rodenr/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/rodenr/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/rodenr/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/rodenr/project-1-make-a/releases{/id}", + "created_at": "2014-09-09T01:35:49Z", + "updated_at": "2014-09-09T01:38:13Z", + "pushed_at": "2014-09-19T03:48:13Z", + "git_url": "git://github.com/rodenr/project-1-make-a.git", + "ssh_url": "git@github.com:rodenr/project-1-make-a.git", + "clone_url": "https://github.com/rodenr/project-1-make-a.git", + "svn_url": "https://github.com/rodenr/project-1-make-a", + "homepage": null, + "size": 96, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "open_issues_count": 19, + "forks": 19, + "open_issues": 19, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/27" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/27" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/27" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/27/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/27/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/27/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/53021c1610634194b4e959685bbc9eb336585ae8" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 226951, + "deletions": 11, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2014-09-19T03:49:21Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296770149", + "type": "PullRequestEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "number": 10, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/10", + "id": 21474437, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/10", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/10.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/10.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/10", + "number": 10, + "state": "open", + "locked": false, + "title": "Completed week 4 challenge", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "body": "More skeleton code/getting started help next time please.", + "created_at": "2014-09-19T02:05:07Z", + "updated_at": "2014-09-19T02:05:07Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c7c88967c448999bf36b2d174443fb5df50b534b", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/10/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/10/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/10/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/f970f4e06a5d64d068c4cd71c381d343ee734004", + "head": { + "label": "dawsonbotsford:master", + "ref": "master", + "sha": "f970f4e06a5d64d068c4cd71c381d343ee734004", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24161234, + "name": "challenge-week-4", + "full_name": "dawsonbotsford/challenge-week-4", + "owner": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dawsonbotsford/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4", + "forks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T20:28:10Z", + "updated_at": "2014-09-18T06:11:05Z", + "pushed_at": "2014-09-19T02:04:22Z", + "git_url": "git://github.com/dawsonbotsford/challenge-week-4.git", + "ssh_url": "git@github.com:dawsonbotsford/challenge-week-4.git", + "clone_url": "https://github.com/dawsonbotsford/challenge-week-4.git", + "svn_url": "https://github.com/dawsonbotsford/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "59fbc47d66b4234195a0f9e172fed7be63ecff74", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24125604, + "name": "challenge-week-4", + "full_name": "CSCI-4830-002-2014/challenge-week-4", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T01:55:18Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-4.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "open_issues_count": 7, + "forks": 8, + "open_issues": 7, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/10" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-4/pull/10" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/10" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/10/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/10/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/pulls/10/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/statuses/f970f4e06a5d64d068c4cd71c381d343ee734004" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 9, + "additions": 16324, + "deletions": 33, + "changed_files": 16 + } + }, + "public": true, + "created_at": "2014-09-19T02:05:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296768260", + "type": "ForkEvent", + "actor": { + "id": 8550840, + "login": "dano8957", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "forkee": { + "id": 24212594, + "name": "deploy-1", + "full_name": "dano8957/deploy-1", + "owner": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dano8957/deploy-1", + "description": "Looking at your data after the first deployment of the arduino", + "fork": true, + "url": "https://api.github.com/repos/dano8957/deploy-1", + "forks_url": "https://api.github.com/repos/dano8957/deploy-1/forks", + "keys_url": "https://api.github.com/repos/dano8957/deploy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dano8957/deploy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dano8957/deploy-1/teams", + "hooks_url": "https://api.github.com/repos/dano8957/deploy-1/hooks", + "issue_events_url": "https://api.github.com/repos/dano8957/deploy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/dano8957/deploy-1/events", + "assignees_url": "https://api.github.com/repos/dano8957/deploy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/dano8957/deploy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/dano8957/deploy-1/tags", + "blobs_url": "https://api.github.com/repos/dano8957/deploy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dano8957/deploy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dano8957/deploy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dano8957/deploy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dano8957/deploy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dano8957/deploy-1/languages", + "stargazers_url": "https://api.github.com/repos/dano8957/deploy-1/stargazers", + "contributors_url": "https://api.github.com/repos/dano8957/deploy-1/contributors", + "subscribers_url": "https://api.github.com/repos/dano8957/deploy-1/subscribers", + "subscription_url": "https://api.github.com/repos/dano8957/deploy-1/subscription", + "commits_url": "https://api.github.com/repos/dano8957/deploy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dano8957/deploy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dano8957/deploy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dano8957/deploy-1/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dano8957/deploy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/dano8957/deploy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dano8957/deploy-1/merges", + "archive_url": "https://api.github.com/repos/dano8957/deploy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dano8957/deploy-1/downloads", + "issues_url": "https://api.github.com/repos/dano8957/deploy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/dano8957/deploy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dano8957/deploy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dano8957/deploy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dano8957/deploy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/dano8957/deploy-1/releases{/id}", + "created_at": "2014-09-19T02:03:06Z", + "updated_at": "2014-09-16T03:36:56Z", + "pushed_at": "2014-09-16T03:41:50Z", + "git_url": "git://github.com/dano8957/deploy-1.git", + "ssh_url": "git@github.com:dano8957/deploy-1.git", + "clone_url": "https://github.com/dano8957/deploy-1.git", + "svn_url": "https://github.com/dano8957/deploy-1", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-19T02:03:07Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296746308", + "type": "IssuesEvent", + "actor": { + "id": 8550840, + "login": "dano8957", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/52", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/52/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/52/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/52", + "id": 43196567, + "number": 52, + "title": "This is Daniel Nolan", + "user": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-19T01:40:16Z", + "updated_at": "2014-09-19T01:40:16Z", + "closed_at": null, + "body": "I ate eggs and quesadillas for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-19T01:40:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296700479", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 43181558, + "number": 7, + "title": "GitHub challenge 6", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 4, + "created_at": "2014-09-18T21:36:03Z", + "updated_at": "2014-09-19T00:53:44Z", + "closed_at": null, + "body": "Made it to the first POST in restler. I have been avoiding any parameters in the \"options\" category of [my restler object].get(url, options). Which is all fine and dandy if I hack up the URL with something like:\r\n\"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls?state=closed\"\r\n\r\nBut now that I am on challenge 6 I believe this requires having a username in my POST request so that Github knows I have permissions to post an issue to a repo. Should I be using the \"options\" field of [restler object].post(url, options)?\r\n\r\nSome skeleton to help with using options would be nice,\r\nCheers\r\n" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56123602", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7#issuecomment-56123602", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 56123602, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-19T00:53:44Z", + "updated_at": "2014-09-19T00:53:44Z", + "body": "Got it working @wannabeCitizen. Thanks for the direction. For reference: \r\nYes, both data and options fields are both filled out with JSON formatted text." + } + }, + "public": true, + "created_at": "2014-09-19T00:53:44Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296698940", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/9", + "id": 43194518, + "number": 9, + "title": "Test Issue", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-19T00:51:48Z", + "updated_at": "2014-09-19T00:52:14Z", + "closed_at": "2014-09-19T00:52:14Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-19T00:52:15Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296698494", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/9", + "id": 43194518, + "number": 9, + "title": "Test Issue", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-19T00:51:48Z", + "updated_at": "2014-09-19T00:51:48Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-19T00:51:49Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296698011", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/8", + "id": 43194475, + "number": 8, + "title": "Test Issue", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-19T00:51:00Z", + "updated_at": "2014-09-19T00:51:19Z", + "closed_at": "2014-09-19T00:51:19Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-19T00:51:20Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296697729", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/8/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/8", + "id": 43194475, + "number": 8, + "title": "Test Issue", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-19T00:51:00Z", + "updated_at": "2014-09-19T00:51:00Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-19T00:51:00Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296676274", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 43181558, + "number": 7, + "title": "GitHub challenge 6", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-18T21:36:03Z", + "updated_at": "2014-09-19T00:31:19Z", + "closed_at": null, + "body": "Made it to the first POST in restler. I have been avoiding any parameters in the \"options\" category of [my restler object].get(url, options). Which is all fine and dandy if I hack up the URL with something like:\r\n\"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls?state=closed\"\r\n\r\nBut now that I am on challenge 6 I believe this requires having a username in my POST request so that Github knows I have permissions to post an issue to a repo. Should I be using the \"options\" field of [restler object].post(url, options)?\r\n\r\nSome skeleton to help with using options would be nice,\r\nCheers\r\n" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56122301", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7#issuecomment-56122301", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 56122301, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-19T00:31:19Z", + "updated_at": "2014-09-19T00:31:19Z", + "body": "So it is an authentication issue. You'll need to do some sort of authentication before you can POST data. Go to the authentication section here: https://developer.github.com/v3/ There are 3 different options, and you do not need to submit your authentication code with the solution. \r\n\r\nRegarding password privacy. We would never ask you to submit something to us that has your password in it. However, putting your password in a script is no more/less safe than entering it on the website. If you do it over https, all your data should be encrypted with SHA-1 and be quite safe. For this assignment, you do not need to put any username/password in your request. OAuth will require you to create a session and get a token before you ever make your request." + } + }, + "public": true, + "created_at": "2014-09-19T00:31:19Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296646497", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 43169169, + "number": 6, + "title": "npm test?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T19:25:23Z", + "updated_at": "2014-09-19T00:05:56Z", + "closed_at": null, + "body": "Did anyone have any luck with 'npm test' after installing restler? I'm on a Mac and got the following output:\r\n\r\n```\r\n$ npm install restler\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n\r\n$ npm test\r\nnpm ERR! Error: ENOENT, open '/Users/bongo/package.json'\r\nnpm ERR! If you need help, you may report this *entire* log,\r\nnpm ERR! including the npm and node versions, at:\r\nnpm ERR! \r\n\r\nnpm ERR! System Darwin 13.3.0\r\nnpm ERR! command \"node\" \"/usr/local/bin/npm\" \"test\"\r\nnpm ERR! cwd /Users/bongo\r\nnpm ERR! node -v v0.10.31\r\nnpm ERR! npm -v 1.4.23\r\nnpm ERR! path /Users/bongo/package.json\r\nnpm ERR! code ENOENT\r\nnpm ERR! errno 34\r\nnpm ERR! \r\nnpm ERR! Additional logging details can be found in:\r\nnpm ERR! /Users/bongo/npm-debug.log\r\nnpm ERR! not ok code 0\r\n```\r\nI downloaded a package.json into /Users/bong/ since that's what it was looking for. But I still got the following error:\r\n```\r\n$ npm test\r\n\r\n> bootstrap@3.2.0 test /Users/bongo\r\n> grunt test\r\n\r\nsh: grunt: command not found\r\nnpm ERR! Test failed. See above for more details.\r\nnpm ERR! not ok code 0\r\n```\r\nAnd when I tried installing one more time...\r\n```\r\n$ npm install restler\r\nnpm WARN package.json bootstrap@3.2.0 No README data\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n```" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56120628", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6#issuecomment-56120628", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 56120628, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-19T00:05:56Z", + "updated_at": "2014-09-19T00:05:56Z", + "body": "The first error was definitely that it was not finding a package.json file. The second one is not an error, it's just warning you that you don't have a README, which is likely because you have it hooked to github and it expects you to have a README. It doesn't matter if you actually do, everything should still run properly." + } + }, + "public": true, + "created_at": "2014-09-19T00:05:56Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296637849", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/4", + "id": 43161875, + "number": 4, + "title": "Can't Get Open Refine to Install", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T18:08:12Z", + "updated_at": "2014-09-18T23:58:46Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhenever I download the .dmg from the download page for my Mac and install it, my computer says \"'Google Refine' is damaged and cannot be opened. You should move it to the trash.\" I've tried installing it five times now. Mac users, how did you get it working on your Mac? " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56120117", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/4#issuecomment-56120117", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4", + "id": 56120117, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T23:58:46Z", + "updated_at": "2014-09-18T23:58:46Z", + "body": "It's because of your security settings on your Mac: https://code.google.com/p/google-refine/issues/detail?id=591" + } + }, + "public": true, + "created_at": "2014-09-18T23:58:46Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296635995", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/5", + "id": 43166817, + "number": 5, + "title": "Show and tell article?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T19:00:06Z", + "updated_at": "2014-09-18T23:57:19Z", + "closed_at": null, + "body": "The directions for challenge 4 say to find a political article, while the read me has the following:\r\n\r\nhttp://link-to-an-interesting-article-about-the-notion-of-quantified-self\r\n\r\nI'm assuming we should find an article regarding the \"notion of quantified self\"?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56120004", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/5#issuecomment-56120004", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5", + "id": 56120004, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T23:57:19Z", + "updated_at": "2014-09-18T23:57:19Z", + "body": "This is fixed. It's supposed to be quantified self, I think Tom may have forgotten to change the field accidentally. " + } + }, + "public": true, + "created_at": "2014-09-18T23:57:19Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296635183", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 455128218, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "5f7e857cb2feacefbe49f97b04c3ef5dc8cd1839", + "before": "a578805651fbff2708a93266b7c32e56eb81451d", + "commits": [ + { + "sha": "5f7e857cb2feacefbe49f97b04c3ef5dc8cd1839", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Update index.md", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/5f7e857cb2feacefbe49f97b04c3ef5dc8cd1839" + } + ] + }, + "public": true, + "created_at": "2014-09-18T23:56:40Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296614647", + "type": "IssueCommentEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 43096867, + "number": 2, + "title": "Open Refine Challenge 6", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 4, + "created_at": "2014-09-18T05:52:57Z", + "updated_at": "2014-09-18T23:39:47Z", + "closed_at": null, + "body": "I'm having some issues with challenge 6. I'm trying to use the \"Add column based on this column\" with the expression being like the tutorial:\r\n\r\n```value.match(/.Professor Of (.)/)[0]```\r\n\r\nThis only returns nulls and my new column is blank. Is there something in particular I am doing wrong?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56118722", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2#issuecomment-56118722", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 56118722, + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T23:39:47Z", + "updated_at": "2014-09-18T23:39:47Z", + "body": "Awesome, thanks Dawson! " + } + }, + "public": true, + "created_at": "2014-09-18T23:39:48Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296606801", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 43096867, + "number": 2, + "title": "Open Refine Challenge 6", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-18T05:52:57Z", + "updated_at": "2014-09-18T23:33:34Z", + "closed_at": null, + "body": "I'm having some issues with challenge 6. I'm trying to use the \"Add column based on this column\" with the expression being like the tutorial:\r\n\r\n```value.match(/.Professor Of (.)/)[0]```\r\n\r\nThis only returns nulls and my new column is blank. Is there something in particular I am doing wrong?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56118186", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2#issuecomment-56118186", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 56118186, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T23:33:34Z", + "updated_at": "2014-09-18T23:33:34Z", + "body": "Bottom left of the screen on my screenshot for this number six has the regex solution:\r\nhttps://github.com/dawsonbotsford/challenge-week-4\r\n\r\nJust separate columns by this regex. Donezo\r\n" + } + }, + "public": true, + "created_at": "2014-09-18T23:33:35Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296583614", + "type": "IssueCommentEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 43096867, + "number": 2, + "title": "Open Refine Challenge 6", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T05:52:57Z", + "updated_at": "2014-09-18T23:15:08Z", + "closed_at": null, + "body": "I'm having some issues with challenge 6. I'm trying to use the \"Add column based on this column\" with the expression being like the tutorial:\r\n\r\n```value.match(/.Professor Of (.)/)[0]```\r\n\r\nThis only returns nulls and my new column is blank. Is there something in particular I am doing wrong?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56116699", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2#issuecomment-56116699", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 56116699, + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T23:15:08Z", + "updated_at": "2014-09-18T23:15:08Z", + "body": "I'm honestly stumped. I've gotten as far as to modify my regex to:\r\n\r\n```value.replace(/\\(*Professor Of /,\"\")```\r\n\r\nMy logic being replacing with \"\" everything that meets the criteria: wild card first, to catch anything before \"Professor Of\", and then the actual \"Professor Of\" string. \r\n\r\nMy problem is that my regex is letting statements like \"Assistant Professor Of Political Science\" turn into \"Assistant Political science\"\r\n\r\nI am not even sure I am using the right utility. This is \"add column based on\"? I've spent about 45 minutes on this problem and all I am learning is about how frustrating regex is. \r\n\r\nSome teacher comment or some actual code would be appreciated because I have a feeling this is far more complex than it has to be. " + } + }, + "public": true, + "created_at": "2014-09-18T23:15:08Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296526470", + "type": "ForkEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "forkee": { + "id": 24207469, + "name": "deploy-1", + "full_name": "BrianNewsom/deploy-1", + "owner": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BrianNewsom/deploy-1", + "description": "Looking at your data after the first deployment of the arduino", + "fork": true, + "url": "https://api.github.com/repos/BrianNewsom/deploy-1", + "forks_url": "https://api.github.com/repos/BrianNewsom/deploy-1/forks", + "keys_url": "https://api.github.com/repos/BrianNewsom/deploy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BrianNewsom/deploy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BrianNewsom/deploy-1/teams", + "hooks_url": "https://api.github.com/repos/BrianNewsom/deploy-1/hooks", + "issue_events_url": "https://api.github.com/repos/BrianNewsom/deploy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/BrianNewsom/deploy-1/events", + "assignees_url": "https://api.github.com/repos/BrianNewsom/deploy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/BrianNewsom/deploy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/BrianNewsom/deploy-1/tags", + "blobs_url": "https://api.github.com/repos/BrianNewsom/deploy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BrianNewsom/deploy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BrianNewsom/deploy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BrianNewsom/deploy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BrianNewsom/deploy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BrianNewsom/deploy-1/languages", + "stargazers_url": "https://api.github.com/repos/BrianNewsom/deploy-1/stargazers", + "contributors_url": "https://api.github.com/repos/BrianNewsom/deploy-1/contributors", + "subscribers_url": "https://api.github.com/repos/BrianNewsom/deploy-1/subscribers", + "subscription_url": "https://api.github.com/repos/BrianNewsom/deploy-1/subscription", + "commits_url": "https://api.github.com/repos/BrianNewsom/deploy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BrianNewsom/deploy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BrianNewsom/deploy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BrianNewsom/deploy-1/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/BrianNewsom/deploy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/BrianNewsom/deploy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BrianNewsom/deploy-1/merges", + "archive_url": "https://api.github.com/repos/BrianNewsom/deploy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BrianNewsom/deploy-1/downloads", + "issues_url": "https://api.github.com/repos/BrianNewsom/deploy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/BrianNewsom/deploy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BrianNewsom/deploy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BrianNewsom/deploy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BrianNewsom/deploy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/BrianNewsom/deploy-1/releases{/id}", + "created_at": "2014-09-18T22:35:10Z", + "updated_at": "2014-09-16T03:36:56Z", + "pushed_at": "2014-09-16T03:41:50Z", + "git_url": "git://github.com/BrianNewsom/deploy-1.git", + "ssh_url": "git@github.com:BrianNewsom/deploy-1.git", + "clone_url": "https://github.com/BrianNewsom/deploy-1.git", + "svn_url": "https://github.com/BrianNewsom/deploy-1", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-18T22:35:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296524903", + "type": "ForkEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24207442, + "name": "challenge-week-4", + "full_name": "BrianNewsom/challenge-week-4", + "owner": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BrianNewsom/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/BrianNewsom/challenge-week-4", + "forks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/BrianNewsom/challenge-week-4/releases{/id}", + "created_at": "2014-09-18T22:34:12Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/BrianNewsom/challenge-week-4.git", + "ssh_url": "git@github.com:BrianNewsom/challenge-week-4.git", + "clone_url": "https://github.com/BrianNewsom/challenge-week-4.git", + "svn_url": "https://github.com/BrianNewsom/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-18T22:34:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296520810", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 43096867, + "number": 2, + "title": "Open Refine Challenge 6", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T05:52:57Z", + "updated_at": "2014-09-18T22:31:35Z", + "closed_at": null, + "body": "I'm having some issues with challenge 6. I'm trying to use the \"Add column based on this column\" with the expression being like the tutorial:\r\n\r\n```value.match(/.Professor Of (.)/)[0]```\r\n\r\nThis only returns nulls and my new column is blank. Is there something in particular I am doing wrong?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56112832", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2#issuecomment-56112832", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 56112832, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T22:31:35Z", + "updated_at": "2014-09-18T22:31:35Z", + "body": "Got it. Think about how many chars you want to catch after \"Professor Of\". The next char is always a space, so that's all you are currently catching. You only need to add one char to your expression to catch everything, just figure that out and it's all sweet dreams." + } + }, + "public": true, + "created_at": "2014-09-18T22:31:35Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296513617", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 43181558, + "number": 7, + "title": "GitHub challenge 6", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-18T21:36:03Z", + "updated_at": "2014-09-18T22:26:59Z", + "closed_at": null, + "body": "Made it to the first POST in restler. I have been avoiding any parameters in the \"options\" category of [my restler object].get(url, options). Which is all fine and dandy if I hack up the URL with something like:\r\n\"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls?state=closed\"\r\n\r\nBut now that I am on challenge 6 I believe this requires having a username in my POST request so that Github knows I have permissions to post an issue to a repo. Should I be using the \"options\" field of [restler object].post(url, options)?\r\n\r\nSome skeleton to help with using options would be nice,\r\nCheers\r\n" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56112389", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7#issuecomment-56112389", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 56112389, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T22:26:59Z", + "updated_at": "2014-09-18T22:26:59Z", + "body": "You have your Github password in these files in raw text? There must a different way, that can't be the assignment because of security issues.\r\n\r\nLet's get some ideas in here from the teachers...Any help?" + } + }, + "public": true, + "created_at": "2014-09-18T22:26:59Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296507620", + "type": "IssueCommentEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 43181558, + "number": 7, + "title": "GitHub challenge 6", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T21:36:03Z", + "updated_at": "2014-09-18T22:23:12Z", + "closed_at": null, + "body": "Made it to the first POST in restler. I have been avoiding any parameters in the \"options\" category of [my restler object].get(url, options). Which is all fine and dandy if I hack up the URL with something like:\r\n\"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls?state=closed\"\r\n\r\nBut now that I am on challenge 6 I believe this requires having a username in my POST request so that Github knows I have permissions to post an issue to a repo. Should I be using the \"options\" field of [restler object].post(url, options)?\r\n\r\nSome skeleton to help with using options would be nice,\r\nCheers\r\n" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56112038", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7#issuecomment-56112038", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 56112038, + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T22:23:12Z", + "updated_at": "2014-09-18T22:23:12Z", + "body": "I'm having trouble with this too. This is the code I've been trying (it's based off the Restler documentation).\r\n\r\n```\r\nvar rest = require('restler');\r\n\r\nrest.postJson('https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues', {\r\n multipart: true,\r\n username: '',\r\n password: '',\r\n data: {\r\n 'title': '',\r\n 'body': '<body>'\r\n }\r\n}).on('complete', function(data) {\r\n console.log(data.audio_url);\r\n});\r\n```\r\nI know it's close, but I can't seem to get it to work." + } + }, + "public": true, + "created_at": "2014-09-18T22:23:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296502368", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 43096867, + "number": 2, + "title": "Open Refine Challenge 6", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T05:52:57Z", + "updated_at": "2014-09-18T22:20:04Z", + "closed_at": null, + "body": "I'm having some issues with challenge 6. I'm trying to use the \"Add column based on this column\" with the expression being like the tutorial:\r\n\r\n```value.match(/.Professor Of (.)/)[0]```\r\n\r\nThis only returns nulls and my new column is blank. Is there something in particular I am doing wrong?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56111716", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2#issuecomment-56111716", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 56111716, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T22:20:04Z", + "updated_at": "2014-09-18T22:20:04Z", + "body": "Bump. Same issue\r\n" + } + }, + "public": true, + "created_at": "2014-09-18T22:20:05Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296488760", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 43096867, + "number": 2, + "title": "Open Refine Challenge 6", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T05:52:57Z", + "updated_at": "2014-09-18T22:11:55Z", + "closed_at": null, + "body": "I'm having some issues with challenge 6. I'm trying to use the \"Add column based on this column\" with the expression being like the tutorial:\r\n\r\n```value.match(/.Professor Of (.)/)[0]```\r\n\r\nThis only returns nulls and my new column is blank. Is there something in particular I am doing wrong?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56110888", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2#issuecomment-56110888", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 56110888, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T22:11:55Z", + "updated_at": "2014-09-18T22:11:55Z", + "body": "It's actually much easier. You go to \"Edit Column\" for occupation and then \"Split into Several Columns\". The rest is up to you." + } + }, + "public": true, + "created_at": "2014-09-18T22:11:55Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296424068", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/7", + "id": 43181558, + "number": 7, + "title": "GitHub challenge 6", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-18T21:36:03Z", + "updated_at": "2014-09-18T21:36:03Z", + "closed_at": null, + "body": "First POST in restler, and getting url issues. I have been avoiding any parameters in the \"options\" category of [my restler object].get(url, options). Which is all fine and dandy if I hack up the URL with something like\r\n``` \"https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1/pulls?state=closed\"```\r\nBut now that I am on challenge 6 I believe this requires having a username in my POST request so that Github knows I have permissions to post an issue to a repo. Should I be using the \"options\" field of [restler object].post(url, options)?\r\n\r\nSome skeleton to help with using options would be nice,\r\nCheers\r\n" + } + }, + "public": true, + "created_at": "2014-09-18T21:36:03Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296277595", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 43169169, + "number": 6, + "title": "npm test?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T19:25:23Z", + "updated_at": "2014-09-18T20:24:06Z", + "closed_at": null, + "body": "Did anyone have any luck with 'npm test' after installing restler? I'm on a Mac and got the following output:\r\n\r\n```\r\n$ npm install restler\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n\r\n$ npm test\r\nnpm ERR! Error: ENOENT, open '/Users/bongo/package.json'\r\nnpm ERR! If you need help, you may report this *entire* log,\r\nnpm ERR! including the npm and node versions, at:\r\nnpm ERR! <http://github.com/npm/npm/issues>\r\n\r\nnpm ERR! System Darwin 13.3.0\r\nnpm ERR! command \"node\" \"/usr/local/bin/npm\" \"test\"\r\nnpm ERR! cwd /Users/bongo\r\nnpm ERR! node -v v0.10.31\r\nnpm ERR! npm -v 1.4.23\r\nnpm ERR! path /Users/bongo/package.json\r\nnpm ERR! code ENOENT\r\nnpm ERR! errno 34\r\nnpm ERR! \r\nnpm ERR! Additional logging details can be found in:\r\nnpm ERR! /Users/bongo/npm-debug.log\r\nnpm ERR! not ok code 0\r\n```\r\nI downloaded a package.json into /Users/bong/ since that's what it was looking for. But I still got the following error:\r\n```\r\n$ npm test\r\n\r\n> bootstrap@3.2.0 test /Users/bongo\r\n> grunt test\r\n\r\nsh: grunt: command not found\r\nnpm ERR! Test failed. See above for more details.\r\nnpm ERR! not ok code 0\r\n```\r\nAnd when I tried installing one more time...\r\n```\r\n$ npm install restler\r\nnpm WARN package.json bootstrap@3.2.0 No README data\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n```" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56096707", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6#issuecomment-56096707", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 56096707, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T20:24:06Z", + "updated_at": "2014-09-18T20:24:06Z", + "body": "I had the same problem. \"npm test\" does not work for me, but now that I switched the \r\n```\"var rest = require('./restler');\"``` \r\nline to be \r\n```\"var rest = require('restler');\"```\r\nit's all been sweet dreams. " + } + }, + "public": true, + "created_at": "2014-09-18T20:24:06Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296271246", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/5", + "id": 43166817, + "number": 5, + "title": "Show and tell article?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T19:00:06Z", + "updated_at": "2014-09-18T20:20:57Z", + "closed_at": null, + "body": "The directions for challenge 4 say to find a political article, while the read me has the following:\r\n\r\nhttp://link-to-an-interesting-article-about-the-notion-of-quantified-self\r\n\r\nI'm assuming we should find an article regarding the \"notion of quantified self\"?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56096288", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/5#issuecomment-56096288", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5", + "id": 56096288, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T20:20:57Z", + "updated_at": "2014-09-18T20:20:57Z", + "body": "Bump. I had the same question.\r\n" + } + }, + "public": true, + "created_at": "2014-09-18T20:20:57Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296161864", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/6", + "id": 43169169, + "number": 6, + "title": "npm test?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-18T19:25:23Z", + "updated_at": "2014-09-18T19:25:23Z", + "closed_at": null, + "body": "Did anyone have any luck with 'npm test' after installing restler? I'm on a Mac and got the following output:\r\n\r\n```\r\n$ npm install restler\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n\r\n$ npm test\r\nnpm ERR! Error: ENOENT, open '/Users/bongo/package.json'\r\nnpm ERR! If you need help, you may report this *entire* log,\r\nnpm ERR! including the npm and node versions, at:\r\nnpm ERR! <http://github.com/npm/npm/issues>\r\n\r\nnpm ERR! System Darwin 13.3.0\r\nnpm ERR! command \"node\" \"/usr/local/bin/npm\" \"test\"\r\nnpm ERR! cwd /Users/bongo\r\nnpm ERR! node -v v0.10.31\r\nnpm ERR! npm -v 1.4.23\r\nnpm ERR! path /Users/bongo/package.json\r\nnpm ERR! code ENOENT\r\nnpm ERR! errno 34\r\nnpm ERR! \r\nnpm ERR! Additional logging details can be found in:\r\nnpm ERR! /Users/bongo/npm-debug.log\r\nnpm ERR! not ok code 0\r\n```\r\nI downloaded a package.json into /Users/bong/ since that's what it was looking for. But I still got the following error:\r\n```\r\n$ npm test\r\n\r\n> bootstrap@3.2.0 test /Users/bongo\r\n> grunt test\r\n\r\nsh: grunt: command not found\r\nnpm ERR! Test failed. See above for more details.\r\nnpm ERR! not ok code 0\r\n```\r\nAnd when I tried installing one more time...\r\n```\r\n$ npm install restler\r\nnpm WARN package.json bootstrap@3.2.0 No README data\r\nrestler@3.2.2 node_modules/restler\r\n├── qs@0.6.6\r\n├── yaml@0.2.3\r\n├── iconv-lite@0.2.11\r\n└── xml2js@0.4.0 (sax@0.5.8, xmlbuilder@2.4.4)\r\n```" + } + }, + "public": true, + "created_at": "2014-09-18T19:25:23Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296112049", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/5", + "id": 43166817, + "number": 5, + "title": "Show and tell article?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-18T19:00:06Z", + "updated_at": "2014-09-18T19:00:06Z", + "closed_at": null, + "body": "The directions for challenge 4 say to find a political article, while the read me has the following:\r\n\r\n[title-of-the-article](http://link-to-an-interesting-article-about-the-notion-of-quantified-self)\r\n\r\nI'm assuming we should find an article regarding the \"notion of quantified self\"?" + } + }, + "public": true, + "created_at": "2014-09-18T19:00:06Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296066123", + "type": "ForkEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24200274, + "name": "challenge-week-4", + "full_name": "alne4294/challenge-week-4", + "owner": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alne4294/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/alne4294/challenge-week-4", + "forks_url": "https://api.github.com/repos/alne4294/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/alne4294/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alne4294/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alne4294/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/alne4294/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/alne4294/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/alne4294/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/alne4294/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/alne4294/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/alne4294/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/alne4294/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alne4294/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alne4294/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alne4294/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alne4294/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alne4294/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/alne4294/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/alne4294/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/alne4294/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/alne4294/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/alne4294/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alne4294/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alne4294/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alne4294/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/alne4294/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/alne4294/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alne4294/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/alne4294/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alne4294/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/alne4294/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/alne4294/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alne4294/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alne4294/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alne4294/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/alne4294/challenge-week-4/releases{/id}", + "created_at": "2014-09-18T18:37:40Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/alne4294/challenge-week-4.git", + "ssh_url": "git@github.com:alne4294/challenge-week-4.git", + "clone_url": "https://github.com/alne4294/challenge-week-4.git", + "svn_url": "https://github.com/alne4294/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-18T18:37:40Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296012896", + "type": "ForkEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24199458, + "name": "challenge-week-4", + "full_name": "develra/challenge-week-4", + "owner": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/develra/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/develra/challenge-week-4", + "forks_url": "https://api.github.com/repos/develra/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/develra/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/develra/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/develra/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/develra/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/develra/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/develra/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/develra/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/develra/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/develra/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/develra/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/develra/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/develra/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/develra/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/develra/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/develra/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/develra/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/develra/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/develra/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/develra/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/develra/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/develra/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/develra/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/develra/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/develra/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/develra/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/develra/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/develra/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/develra/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/develra/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/develra/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/develra/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/develra/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/develra/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/develra/challenge-week-4/releases{/id}", + "created_at": "2014-09-18T18:11:59Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/develra/challenge-week-4.git", + "ssh_url": "git@github.com:develra/challenge-week-4.git", + "clone_url": "https://github.com/develra/challenge-week-4.git", + "svn_url": "https://github.com/develra/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-18T18:11:59Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2296005309", + "type": "IssuesEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/4/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/4", + "id": 43161875, + "number": 4, + "title": "Can't Get Open Refine to Install", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-18T18:08:12Z", + "updated_at": "2014-09-18T18:08:12Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhenever I download the .dmg from the download page for my Mac and install it, my computer says \"'Google Refine' is damaged and cannot be opened. You should move it to the trash.\" I've tried installing it five times now. Mac users, how did you get it working on your Mac? " + } + }, + "public": true, + "created_at": "2014-09-18T18:08:13Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2295727934", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/3", + "id": 43097887, + "number": 3, + "title": "Proper output", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T06:13:16Z", + "updated_at": "2014-09-18T15:54:13Z", + "closed_at": "2014-09-18T15:54:13Z", + "body": "I just took a shot in the dark to get a JSON response for challenge 1 and I just wanted to see if the response is correct. I guess it's JSON, but can someone check this for me?\r\n\r\n\r\nhttps://github.com/dawsonbotsford/challenge-week-4/blob/master/result1.json\r\nCheers" + } + }, + "public": true, + "created_at": "2014-09-18T15:54:13Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2295318247", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/3", + "id": 43097887, + "number": 3, + "title": "Proper output", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-18T06:13:16Z", + "updated_at": "2014-09-18T12:52:43Z", + "closed_at": null, + "body": "I just took a shot in the dark to get a JSON response for challenge 1 and I just wanted to see if the response is correct. I guess it's JSON, but can someone check this for me?\r\n\r\n\r\nhttps://github.com/dawsonbotsford/challenge-week-4/blob/master/result1.json\r\nCheers" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/comments/56033502", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/3#issuecomment-56033502", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3", + "id": 56033502, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-18T12:52:43Z", + "updated_at": "2014-09-18T12:52:43Z", + "body": "This is json and validly answers challenge 1\r\n\r\n-Mike\r\n\r\n> On Sep 18, 2014, at 12:13 AM, Dawson Botsford <notifications@github.com> wrote:\r\n> \r\n> I just took a shot in the dark to get a JSON response for challenge 1 and I just wanted to see if the response is correct. I guess it's JSON, but can someone check this for me?\r\n> \r\n> https://github.com/dawsonbotsford/challenge-week-4/blob/master/result1.json\r\n> Cheers\r\n> \r\n> —\r\n> Reply to this email directly or view it on GitHub." + } + }, + "public": true, + "created_at": "2014-09-18T12:52:43Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2294729020", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/3/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/3", + "id": 43097887, + "number": 3, + "title": "Proper output", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-18T06:13:16Z", + "updated_at": "2014-09-18T06:13:16Z", + "closed_at": null, + "body": "I just took a shot in the dark to get a JSON response for challenge 1 and I just wanted to see if the response is correct. I guess it's JSON, but can someone check this for me?\r\n\r\n\r\nhttps://github.com/dawsonbotsford/challenge-week-4/blob/master/result1.json\r\nCheers" + } + }, + "public": true, + "created_at": "2014-09-18T06:13:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2294708859", + "type": "IssuesEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/2", + "id": 43096867, + "number": 2, + "title": "Open Refine Challenge 6", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-18T05:52:57Z", + "updated_at": "2014-09-18T05:52:57Z", + "closed_at": null, + "body": "I'm having some issues with challenge 6. I'm trying to use the \"Add column based on this column\" with the expression being like the tutorial:\r\n\r\n```value.match(/.Professor Of (.)/)[0]```\r\n\r\nThis only returns nulls and my new column is blank. Is there something in particular I am doing wrong?" + } + }, + "public": true, + "created_at": "2014-09-18T05:52:57Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2294640332", + "type": "ForkEvent", + "actor": { + "id": 3361094, + "login": "masi8397", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24173949, + "name": "challenge-week-4", + "full_name": "masi8397/challenge-week-4", + "owner": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/masi8397/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/masi8397/challenge-week-4", + "forks_url": "https://api.github.com/repos/masi8397/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/masi8397/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/masi8397/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/masi8397/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/masi8397/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/masi8397/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/masi8397/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/masi8397/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/masi8397/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/masi8397/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/masi8397/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/masi8397/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/masi8397/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/masi8397/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/masi8397/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/masi8397/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/masi8397/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/masi8397/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/masi8397/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/masi8397/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/masi8397/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/masi8397/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/masi8397/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/masi8397/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/masi8397/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/masi8397/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/masi8397/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/masi8397/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/masi8397/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/masi8397/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/masi8397/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/masi8397/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/masi8397/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/masi8397/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/masi8397/challenge-week-4/releases{/id}", + "created_at": "2014-09-18T04:30:14Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/masi8397/challenge-week-4.git", + "ssh_url": "git@github.com:masi8397/challenge-week-4.git", + "clone_url": "https://github.com/masi8397/challenge-week-4.git", + "svn_url": "https://github.com/masi8397/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-18T04:30:14Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2294087963", + "type": "ForkEvent", + "actor": { + "id": 7710325, + "login": "dare599z", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24162424, + "name": "challenge-week-4", + "full_name": "dare599z/challenge-week-4", + "owner": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dare599z/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dare599z/challenge-week-4", + "forks_url": "https://api.github.com/repos/dare599z/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/dare599z/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dare599z/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dare599z/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/dare599z/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/dare599z/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/dare599z/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/dare599z/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/dare599z/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/dare599z/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/dare599z/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dare599z/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dare599z/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dare599z/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dare599z/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dare599z/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/dare599z/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/dare599z/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/dare599z/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/dare599z/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/dare599z/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dare599z/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dare599z/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dare599z/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dare599z/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/dare599z/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dare599z/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/dare599z/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dare599z/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/dare599z/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/dare599z/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dare599z/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dare599z/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dare599z/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/dare599z/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T21:06:38Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/dare599z/challenge-week-4.git", + "ssh_url": "git@github.com:dare599z/challenge-week-4.git", + "clone_url": "https://github.com/dare599z/challenge-week-4.git", + "svn_url": "https://github.com/dare599z/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-17T21:06:38Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2294005431", + "type": "ForkEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24161234, + "name": "challenge-week-4", + "full_name": "dawsonbotsford/challenge-week-4", + "owner": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dawsonbotsford/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4", + "forks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T20:28:10Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/dawsonbotsford/challenge-week-4.git", + "ssh_url": "git@github.com:dawsonbotsford/challenge-week-4.git", + "clone_url": "https://github.com/dawsonbotsford/challenge-week-4.git", + "svn_url": "https://github.com/dawsonbotsford/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-17T20:28:11Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293837926", + "type": "ForkEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24158315, + "name": "challenge-week-4", + "full_name": "antsankov/challenge-week-4", + "owner": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/antsankov/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/antsankov/challenge-week-4", + "forks_url": "https://api.github.com/repos/antsankov/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/antsankov/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/antsankov/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/antsankov/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/antsankov/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/antsankov/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/antsankov/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/antsankov/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/antsankov/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/antsankov/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/antsankov/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/antsankov/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/antsankov/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/antsankov/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/antsankov/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/antsankov/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/antsankov/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/antsankov/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/antsankov/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/antsankov/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/antsankov/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/antsankov/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/antsankov/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/antsankov/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/antsankov/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/antsankov/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/antsankov/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/antsankov/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/antsankov/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/antsankov/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/antsankov/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T19:06:07Z", + "updated_at": "2014-09-17T19:06:06Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/antsankov/challenge-week-4.git", + "ssh_url": "git@github.com:antsankov/challenge-week-4.git", + "clone_url": "https://github.com/antsankov/challenge-week-4.git", + "svn_url": "https://github.com/antsankov/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-17T19:06:07Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293837831", + "type": "WatchEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2014-09-17T19:06:05Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293700004", + "type": "IssuesEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/1", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/1/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/issues/1/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-4/issues/1", + "id": 43043590, + "number": 1, + "title": "Error with require('/restler')", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-17T18:02:35Z", + "updated_at": "2014-09-17T18:02:35Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nI got an early start on the challenge and found this error early on . Once you install restler and try to use it in the code via the line var rest = require('./restler'); by following the example code, your computer will throw an error saying it can't find the module './restler'. To solve this, you want to instead use the line var rest = require('restler');. If anyone wants to know where I found this solution, here's the link: https://github.com/bnoguchi/everyauth/issues/359\r\n\r\nHope this prevented some headaches early on. \r\n" + } + }, + "public": true, + "created_at": "2014-09-17T18:02:35Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293649312", + "type": "ForkEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "forkee": { + "id": 24155245, + "name": "challenge-week-4", + "full_name": "cwitty1919/challenge-week-4", + "owner": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/cwitty1919/challenge-week-4", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/cwitty1919/challenge-week-4", + "forks_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/forks", + "keys_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/teams", + "hooks_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/hooks", + "issue_events_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/issues/events{/number}", + "events_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/events", + "assignees_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/assignees{/user}", + "branches_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/branches{/branch}", + "tags_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/tags", + "blobs_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/languages", + "stargazers_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/stargazers", + "contributors_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/contributors", + "subscribers_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/subscribers", + "subscription_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/subscription", + "commits_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/contents/{+path}", + "compare_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/merges", + "archive_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/downloads", + "issues_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/issues{/number}", + "pulls_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/labels{/name}", + "releases_url": "https://api.github.com/repos/cwitty1919/challenge-week-4/releases{/id}", + "created_at": "2014-09-17T17:37:50Z", + "updated_at": "2014-09-17T14:43:33Z", + "pushed_at": "2014-09-17T14:43:33Z", + "git_url": "git://github.com/cwitty1919/challenge-week-4.git", + "ssh_url": "git@github.com:cwitty1919/challenge-week-4.git", + "clone_url": "https://github.com/cwitty1919/challenge-week-4.git", + "svn_url": "https://github.com/cwitty1919/challenge-week-4", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-17T17:37:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293253637", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 453699212, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "a578805651fbff2708a93266b7c32e56eb81451d", + "before": "2f17011963d2cc80a18f809326235c5a68845a71", + "commits": [ + { + "sha": "a578805651fbff2708a93266b7c32e56eb81451d", + "author": { + "email": "doubleshow@gmail.com", + "name": "Tom Yeh" + }, + "message": "update score", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/a578805651fbff2708a93266b7c32e56eb81451d" + } + ] + }, + "public": true, + "created_at": "2014-09-17T14:45:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293249988", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 453697621, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "2f17011963d2cc80a18f809326235c5a68845a71", + "before": "61aba798a2c0477365005aeb96af878b2457fc97", + "commits": [ + { + "sha": "2f17011963d2cc80a18f809326235c5a68845a71", + "author": { + "email": "doubleshow@gmail.com", + "name": "Tom Yeh" + }, + "message": "add one challenge to api2", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/2f17011963d2cc80a18f809326235c5a68845a71" + } + ] + }, + "public": true, + "created_at": "2014-09-17T14:43:59Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293249020", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "push_id": 453697227, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "59fbc47d66b4234195a0f9e172fed7be63ecff74", + "before": "e6ecd02353e0842e324d3f3266446f6e96ffcff0", + "commits": [ + { + "sha": "59fbc47d66b4234195a0f9e172fed7be63ecff74", + "author": { + "email": "doubleshow@gmail.com", + "name": "Tom Yeh" + }, + "message": "readme, skeleton files", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4/commits/59fbc47d66b4234195a0f9e172fed7be63ecff74" + } + ] + }, + "public": true, + "created_at": "2014-09-17T14:43:33Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2293225369", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 453687157, + "size": 2, + "distinct_size": 2, + "ref": "refs/heads/master", + "head": "61aba798a2c0477365005aeb96af878b2457fc97", + "before": "fdb2ad69e134d05d9b0e02e843a8a0c446772bd2", + "commits": [ + { + "sha": "b54da7d6e759b4612317dc2ff3fcc1aff55e0d27", + "author": { + "email": "doubleshow@gmail.com", + "name": "Tom Yeh" + }, + "message": "refine", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/b54da7d6e759b4612317dc2ff3fcc1aff55e0d27" + }, + { + "sha": "61aba798a2c0477365005aeb96af878b2457fc97", + "author": { + "email": "doubleshow@gmail.com", + "name": "Tom Yeh" + }, + "message": "week4", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/61aba798a2c0477365005aeb96af878b2457fc97" + } + ] + }, + "public": true, + "created_at": "2014-09-17T14:33:54Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2292147257", + "type": "CreateEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 24125604, + "name": "CSCI-4830-002-2014/challenge-week-4", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-4" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": "", + "pusher_type": "user" + }, + "public": true, + "created_at": "2014-09-17T01:55:18Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2290219558", + "type": "PullRequestEvent", + "actor": { + "id": 8550840, + "login": "dano8957", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 26, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/26", + "id": 21283562, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/26", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/26.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/26.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/26", + "number": 26, + "state": "open", + "locked": false, + "title": "Finished Project 1 Make A Assignment", + "user": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "body": "I pasted my whole .csv file into the repo necessary. Not sure if we needed to do that, don't remember how to move the .csv file into the repo from Git.", + "created_at": "2014-09-16T08:39:40Z", + "updated_at": "2014-09-16T08:39:40Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/26/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/26/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/26/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/4dabdae106a483594aaa1077b0ad59437a3276f0", + "head": { + "label": "dano8957:master", + "ref": "master", + "sha": "4dabdae106a483594aaa1077b0ad59437a3276f0", + "user": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23772299, + "name": "project-1-make-a", + "full_name": "dano8957/project-1-make-a", + "owner": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dano8957/project-1-make-a", + "description": "project-1-make-a", + "fork": true, + "url": "https://api.github.com/repos/dano8957/project-1-make-a", + "forks_url": "https://api.github.com/repos/dano8957/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/dano8957/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dano8957/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dano8957/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/dano8957/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/dano8957/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/dano8957/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/dano8957/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/dano8957/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/dano8957/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/dano8957/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dano8957/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dano8957/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dano8957/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dano8957/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dano8957/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/dano8957/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/dano8957/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/dano8957/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/dano8957/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/dano8957/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dano8957/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dano8957/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dano8957/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dano8957/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/dano8957/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dano8957/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/dano8957/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dano8957/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/dano8957/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/dano8957/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dano8957/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dano8957/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dano8957/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/dano8957/project-1-make-a/releases{/id}", + "created_at": "2014-09-07T22:07:03Z", + "updated_at": "2014-09-07T22:27:05Z", + "pushed_at": "2014-09-16T08:36:29Z", + "git_url": "git://github.com/dano8957/project-1-make-a.git", + "ssh_url": "git@github.com:dano8957/project-1-make-a.git", + "clone_url": "https://github.com/dano8957/project-1-make-a.git", + "svn_url": "https://github.com/dano8957/project-1-make-a", + "homepage": "", + "size": 96, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "open_issues_count": 18, + "forks": 19, + "open_issues": 18, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/26" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/26" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/26" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/26/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/26/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/26/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/4dabdae106a483594aaa1077b0ad59437a3276f0" + } + }, + "merged": false, + "mergeable": false, + "mergeable_state": "dirty", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 4, + "additions": 72589, + "deletions": 11, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2014-09-16T08:39:41Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289903372", + "type": "PullRequestEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 25, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/25", + "id": 21275317, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/25", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/25.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/25.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/25", + "number": 25, + "state": "open", + "locked": false, + "title": "Chris Wittenberg: Finished Project-Make-!a", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "body": "Sorry I turned it in late!", + "created_at": "2014-09-16T03:58:06Z", + "updated_at": "2014-09-16T03:58:06Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "7760e77e632b08c8a3deace479cf42f5c4d19818", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/25/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/25/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/25/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/1cfd5a412d5e96eed4e676add44c273e6d41e76a", + "head": { + "label": "cwitty1919:master", + "ref": "master", + "sha": "1cfd5a412d5e96eed4e676add44c273e6d41e76a", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24084534, + "name": "project-1-make-a", + "full_name": "cwitty1919/project-1-make-a", + "owner": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/cwitty1919/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/cwitty1919/project-1-make-a", + "forks_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/releases{/id}", + "created_at": "2014-09-16T03:51:21Z", + "updated_at": "2014-09-16T03:51:49Z", + "pushed_at": "2014-09-16T03:57:08Z", + "git_url": "git://github.com/cwitty1919/project-1-make-a.git", + "ssh_url": "git@github.com:cwitty1919/project-1-make-a.git", + "clone_url": "https://github.com/cwitty1919/project-1-make-a.git", + "svn_url": "https://github.com/cwitty1919/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 19, + "mirror_url": null, + "open_issues_count": 17, + "forks": 19, + "open_issues": 17, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/25" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/25" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/25" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/25/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/25/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/25/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/1cfd5a412d5e96eed4e676add44c273e6d41e76a" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 1969, + "deletions": 23, + "changed_files": 6 + } + }, + "public": true, + "created_at": "2014-09-16T03:58:07Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289897545", + "type": "ForkEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24084534, + "name": "project-1-make-a", + "full_name": "cwitty1919/project-1-make-a", + "owner": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/cwitty1919/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/cwitty1919/project-1-make-a", + "forks_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/cwitty1919/project-1-make-a/releases{/id}", + "created_at": "2014-09-16T03:51:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/cwitty1919/project-1-make-a.git", + "ssh_url": "git@github.com:cwitty1919/project-1-make-a.git", + "clone_url": "https://github.com/cwitty1919/project-1-make-a.git", + "svn_url": "https://github.com/cwitty1919/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-16T03:51:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289888989", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "push_id": 452271514, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "221ab1cc173bf650de98c4a806f4bd6f4141ba1a", + "before": "d611ba0f45323dddf9580b4ba222865825a50439", + "commits": [ + { + "sha": "221ab1cc173bf650de98c4a806f4bd6f4141ba1a", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/commits/221ab1cc173bf650de98c4a806f4bd6f4141ba1a" + } + ] + }, + "public": true, + "created_at": "2014-09-16T03:41:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289888856", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": { + "push_id": 452271456, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "d611ba0f45323dddf9580b4ba222865825a50439", + "before": "7e1cdb33f3b2d8da5ce1ecfe2ac6ea74c633469d", + "commits": [ + { + "sha": "d611ba0f45323dddf9580b4ba222865825a50439", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1/commits/d611ba0f45323dddf9580b4ba222865825a50439" + } + ] + }, + "public": true, + "created_at": "2014-09-16T03:41:39Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289888439", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 452271268, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "fdb2ad69e134d05d9b0e02e843a8a0c446772bd2", + "before": "ad0a25fad0f31a4fd82c2ccf23582dc003ef3ed9", + "commits": [ + { + "sha": "fdb2ad69e134d05d9b0e02e843a8a0c446772bd2", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "wannabeCitizen" + }, + "message": "Fixed deploy and added assignment repo", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/fdb2ad69e134d05d9b0e02e843a8a0c446772bd2" + } + ] + }, + "public": true, + "created_at": "2014-09-16T03:41:15Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289884636", + "type": "PublicEvent", + "actor": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + }, + "repo": { + "id": 24084089, + "name": "CSCI-4830-002-2014/deploy-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/deploy-1" + }, + "payload": {}, + "public": true, + "created_at": "2014-09-16T03:36:56Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289879781", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 452267476, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "ad0a25fad0f31a4fd82c2ccf23582dc003ef3ed9", + "before": "1d6a141850d4ea5898ea53834071a00c3db4a48b", + "commits": [ + { + "sha": "ad0a25fad0f31a4fd82c2ccf23582dc003ef3ed9", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "wannabeCitizen" + }, + "message": "Added project deploy 1", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/ad0a25fad0f31a4fd82c2ccf23582dc003ef3ed9" + } + ] + }, + "public": true, + "created_at": "2014-09-16T03:31:26Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289793848", + "type": "IssuesEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/issues/5", + "id": 42837683, + "number": 5, + "title": "Group submission", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-16T02:01:09Z", + "updated_at": "2014-09-16T02:01:09Z", + "closed_at": null, + "body": "https://github.com/ianks/hackathon-3\r\n\r\nSorry for not :fork_and_knife:'ing the repo" + } + }, + "public": true, + "created_at": "2014-09-16T02:01:09Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289777002", + "type": "PullRequestEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "action": "opened", + "number": 4, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/4", + "id": 21272215, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/4", + "diff_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/4.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/4.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/4", + "number": 4, + "state": "open", + "locked": false, + "title": "Github Hackathon Sam Brian Adrian Peyman", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-16T01:45:12Z", + "updated_at": "2014-09-16T01:45:12Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/4/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/4/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/4/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/b63658363cba66890882e2179f5320565d55c291", + "head": { + "label": "peymanmortazavi:master", + "ref": "master", + "sha": "b63658363cba66890882e2179f5320565d55c291", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24078571, + "name": "hackathon-github", + "full_name": "peymanmortazavi/hackathon-github", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/hackathon-github", + "forks_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:00:50Z", + "updated_at": "2014-09-16T00:37:24Z", + "pushed_at": "2014-09-16T01:44:14Z", + "git_url": "git://github.com/peymanmortazavi/hackathon-github.git", + "ssh_url": "git@github.com:peymanmortazavi/hackathon-github.git", + "clone_url": "https://github.com/peymanmortazavi/hackathon-github.git", + "svn_url": "https://github.com/peymanmortazavi/hackathon-github", + "homepage": null, + "size": 3890, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "8623f44bd638276e7433d43cdd725d0f2a6a3b18", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24055645, + "name": "hackathon-github", + "full_name": "CSCI-4830-002-2014/hackathon-github", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/releases{/id}", + "created_at": "2014-09-15T12:33:04Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/CSCI-4830-002-2014/hackathon-github.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/hackathon-github.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/hackathon-github.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "homepage": null, + "size": 3906, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "open_issues_count": 4, + "forks": 12, + "open_issues": 4, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/4" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/4" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/4" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/4/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/4/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/4/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/b63658363cba66890882e2179f5320565d55c291" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 25, + "additions": 41567, + "deletions": 31, + "changed_files": 10 + } + }, + "public": true, + "created_at": "2014-09-16T01:45:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289770241", + "type": "PullRequestEvent", + "actor": { + "id": 7710325, + "login": "dare599z", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "action": "opened", + "number": 3, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/3", + "id": 21272032, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/3", + "diff_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/3.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/3.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/3", + "number": 3, + "state": "open", + "locked": false, + "title": "Submission", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "body": "Was absent from class, stuck out of town. Completed the Hackathon by myself during class hours.", + "created_at": "2014-09-16T01:38:37Z", + "updated_at": "2014-09-16T01:38:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/3/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/3/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/3/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/3ed3540488fa6d28142a2ee0c98df40f0830bca3", + "head": { + "label": "dare599z:master", + "ref": "master", + "sha": "3ed3540488fa6d28142a2ee0c98df40f0830bca3", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24079907, + "name": "hackathon-github", + "full_name": "dare599z/hackathon-github", + "owner": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dare599z/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dare599z/hackathon-github", + "forks_url": "https://api.github.com/repos/dare599z/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/dare599z/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dare599z/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dare599z/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/dare599z/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/dare599z/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/dare599z/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/dare599z/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/dare599z/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/dare599z/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/dare599z/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dare599z/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dare599z/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dare599z/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dare599z/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dare599z/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/dare599z/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/dare599z/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/dare599z/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/dare599z/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/dare599z/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dare599z/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dare599z/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dare599z/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dare599z/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/dare599z/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dare599z/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/dare599z/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dare599z/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/dare599z/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/dare599z/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dare599z/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dare599z/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dare599z/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/dare599z/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:55:14Z", + "updated_at": "2014-09-16T01:29:00Z", + "pushed_at": "2014-09-16T01:37:24Z", + "git_url": "git://github.com/dare599z/hackathon-github.git", + "ssh_url": "git@github.com:dare599z/hackathon-github.git", + "clone_url": "https://github.com/dare599z/hackathon-github.git", + "svn_url": "https://github.com/dare599z/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "8623f44bd638276e7433d43cdd725d0f2a6a3b18", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24055645, + "name": "hackathon-github", + "full_name": "CSCI-4830-002-2014/hackathon-github", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/releases{/id}", + "created_at": "2014-09-15T12:33:04Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/CSCI-4830-002-2014/hackathon-github.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/hackathon-github.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/hackathon-github.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "open_issues_count": 3, + "forks": 12, + "open_issues": 3, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/3" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/3" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/3" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/3/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/3/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/3/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/3ed3540488fa6d28142a2ee0c98df40f0830bca3" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 56, + "deletions": 30, + "changed_files": 11 + } + }, + "public": true, + "created_at": "2014-09-16T01:38:37Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289756913", + "type": "PullRequestEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "action": "opened", + "number": 2, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/2", + "id": 21271704, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/2", + "diff_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/2.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/2.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/2", + "number": 2, + "state": "open", + "locked": false, + "title": "sadfjasdjiofads", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "body": "I'm sorry for the bad title.", + "created_at": "2014-09-16T01:25:37Z", + "updated_at": "2014-09-16T01:25:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/2/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/2/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/2/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/18121c756e762dc05597b0428ba20d0addc40173", + "head": { + "label": "LoganBates:master", + "ref": "master", + "sha": "18121c756e762dc05597b0428ba20d0addc40173", + "user": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24078519, + "name": "hackathon-github", + "full_name": "LoganBates/hackathon-github", + "owner": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LoganBates/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LoganBates/hackathon-github", + "forks_url": "https://api.github.com/repos/LoganBates/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/LoganBates/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LoganBates/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LoganBates/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/LoganBates/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/LoganBates/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/LoganBates/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/LoganBates/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/LoganBates/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/LoganBates/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LoganBates/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LoganBates/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/LoganBates/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/LoganBates/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/LoganBates/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/LoganBates/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/LoganBates/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LoganBates/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LoganBates/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LoganBates/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/LoganBates/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LoganBates/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/LoganBates/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LoganBates/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/LoganBates/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/LoganBates/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LoganBates/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LoganBates/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LoganBates/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/LoganBates/hackathon-github/releases{/id}", + "created_at": "2014-09-15T23:58:39Z", + "updated_at": "2014-09-16T00:01:44Z", + "pushed_at": "2014-09-16T01:24:53Z", + "git_url": "git://github.com/LoganBates/hackathon-github.git", + "ssh_url": "git@github.com:LoganBates/hackathon-github.git", + "clone_url": "https://github.com/LoganBates/hackathon-github.git", + "svn_url": "https://github.com/LoganBates/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "open_issues_count": 0, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "8623f44bd638276e7433d43cdd725d0f2a6a3b18", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24055645, + "name": "hackathon-github", + "full_name": "CSCI-4830-002-2014/hackathon-github", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/releases{/id}", + "created_at": "2014-09-15T12:33:04Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/CSCI-4830-002-2014/hackathon-github.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/hackathon-github.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/hackathon-github.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "open_issues_count": 2, + "forks": 12, + "open_issues": 2, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/2" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/2" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/2" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/2/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/2/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/2/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/18121c756e762dc05597b0428ba20d0addc40173" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 12, + "additions": 131615, + "deletions": 16, + "changed_files": 12 + } + }, + "public": true, + "created_at": "2014-09-16T01:25:38Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289754437", + "type": "PullRequestEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/1", + "id": 21271638, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/1", + "diff_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/1.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/1.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Finished Github Hackathon", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-16T01:23:19Z", + "updated_at": "2014-09-16T01:23:19Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/1/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/b1743cc10603fabe4b1f17b99a1df96e9e0e2722", + "head": { + "label": "indiesquidge:master", + "ref": "master", + "sha": "b1743cc10603fabe4b1f17b99a1df96e9e0e2722", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24078610, + "name": "hackathon-github", + "full_name": "indiesquidge/hackathon-github", + "owner": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/indiesquidge/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/indiesquidge/hackathon-github", + "forks_url": "https://api.github.com/repos/indiesquidge/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/indiesquidge/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/indiesquidge/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/indiesquidge/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/indiesquidge/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/indiesquidge/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/indiesquidge/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/indiesquidge/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/indiesquidge/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/indiesquidge/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/indiesquidge/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/indiesquidge/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/indiesquidge/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/indiesquidge/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/indiesquidge/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/indiesquidge/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/indiesquidge/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/indiesquidge/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/indiesquidge/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/indiesquidge/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/indiesquidge/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/indiesquidge/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/indiesquidge/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/indiesquidge/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/indiesquidge/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/indiesquidge/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/indiesquidge/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/indiesquidge/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/indiesquidge/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/indiesquidge/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:02:16Z", + "updated_at": "2014-09-16T00:08:02Z", + "pushed_at": "2014-09-16T01:21:19Z", + "git_url": "git://github.com/indiesquidge/hackathon-github.git", + "ssh_url": "git@github.com:indiesquidge/hackathon-github.git", + "clone_url": "https://github.com/indiesquidge/hackathon-github.git", + "svn_url": "https://github.com/indiesquidge/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "open_issues_count": 0, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "8623f44bd638276e7433d43cdd725d0f2a6a3b18", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 24055645, + "name": "hackathon-github", + "full_name": "CSCI-4830-002-2014/hackathon-github", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/releases{/id}", + "created_at": "2014-09-15T12:33:04Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/CSCI-4830-002-2014/hackathon-github.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/hackathon-github.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/hackathon-github.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "open_issues_count": 1, + "forks": 12, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/1" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/hackathon-github/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/statuses/b1743cc10603fabe4b1f17b99a1df96e9e0e2722" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 27024, + "deletions": 30, + "changed_files": 16 + } + }, + "public": true, + "created_at": "2014-09-16T01:23:19Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289723418", + "type": "ForkEvent", + "actor": { + "id": 7710325, + "login": "dare599z", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "forkee": { + "id": 24079907, + "name": "hackathon-github", + "full_name": "dare599z/hackathon-github", + "owner": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dare599z/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dare599z/hackathon-github", + "forks_url": "https://api.github.com/repos/dare599z/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/dare599z/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dare599z/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dare599z/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/dare599z/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/dare599z/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/dare599z/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/dare599z/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/dare599z/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/dare599z/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/dare599z/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dare599z/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dare599z/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dare599z/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dare599z/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dare599z/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/dare599z/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/dare599z/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/dare599z/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/dare599z/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/dare599z/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dare599z/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dare599z/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dare599z/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dare599z/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/dare599z/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dare599z/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/dare599z/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dare599z/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/dare599z/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/dare599z/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dare599z/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dare599z/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dare599z/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/dare599z/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:55:14Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/dare599z/hackathon-github.git", + "ssh_url": "git@github.com:dare599z/hackathon-github.git", + "clone_url": "https://github.com/dare599z/hackathon-github.git", + "svn_url": "https://github.com/dare599z/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-16T00:55:15Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289674468", + "type": "ForkEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "forkee": { + "id": 24078886, + "name": "hackathon-github", + "full_name": "antsankov/hackathon-github", + "owner": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/antsankov/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/antsankov/hackathon-github", + "forks_url": "https://api.github.com/repos/antsankov/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/antsankov/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/antsankov/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/antsankov/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/antsankov/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/antsankov/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/antsankov/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/antsankov/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/antsankov/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/antsankov/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/antsankov/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/antsankov/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/antsankov/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/antsankov/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/antsankov/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/antsankov/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/antsankov/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/antsankov/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/antsankov/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/antsankov/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/antsankov/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/antsankov/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/antsankov/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/antsankov/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/antsankov/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/antsankov/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/antsankov/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/antsankov/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/antsankov/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/antsankov/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/antsankov/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/antsankov/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/antsankov/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/antsankov/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/antsankov/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:12:13Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/antsankov/hackathon-github.git", + "ssh_url": "git@github.com:antsankov/hackathon-github.git", + "clone_url": "https://github.com/antsankov/hackathon-github.git", + "svn_url": "https://github.com/antsankov/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-16T00:12:13Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289665106", + "type": "ForkEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "forkee": { + "id": 24078671, + "name": "hackathon-github", + "full_name": "nfejes/hackathon-github", + "owner": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nfejes/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nfejes/hackathon-github", + "forks_url": "https://api.github.com/repos/nfejes/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/nfejes/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nfejes/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nfejes/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/nfejes/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/nfejes/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/nfejes/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/nfejes/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/nfejes/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/nfejes/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/nfejes/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nfejes/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nfejes/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nfejes/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nfejes/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nfejes/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/nfejes/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/nfejes/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/nfejes/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/nfejes/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/nfejes/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nfejes/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nfejes/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nfejes/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nfejes/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/nfejes/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nfejes/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/nfejes/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nfejes/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/nfejes/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/nfejes/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nfejes/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nfejes/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nfejes/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/nfejes/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:04:16Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/nfejes/hackathon-github.git", + "ssh_url": "git@github.com:nfejes/hackathon-github.git", + "clone_url": "https://github.com/nfejes/hackathon-github.git", + "svn_url": "https://github.com/nfejes/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-16T00:04:17Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289662610", + "type": "ForkEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "forkee": { + "id": 24078610, + "name": "hackathon-github", + "full_name": "indiesquidge/hackathon-github", + "owner": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/indiesquidge/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/indiesquidge/hackathon-github", + "forks_url": "https://api.github.com/repos/indiesquidge/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/indiesquidge/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/indiesquidge/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/indiesquidge/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/indiesquidge/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/indiesquidge/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/indiesquidge/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/indiesquidge/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/indiesquidge/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/indiesquidge/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/indiesquidge/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/indiesquidge/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/indiesquidge/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/indiesquidge/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/indiesquidge/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/indiesquidge/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/indiesquidge/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/indiesquidge/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/indiesquidge/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/indiesquidge/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/indiesquidge/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/indiesquidge/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/indiesquidge/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/indiesquidge/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/indiesquidge/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/indiesquidge/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/indiesquidge/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/indiesquidge/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/indiesquidge/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/indiesquidge/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/indiesquidge/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:02:16Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/indiesquidge/hackathon-github.git", + "ssh_url": "git@github.com:indiesquidge/hackathon-github.git", + "clone_url": "https://github.com/indiesquidge/hackathon-github.git", + "svn_url": "https://github.com/indiesquidge/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-16T00:02:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289660877", + "type": "ForkEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "forkee": { + "id": 24078571, + "name": "hackathon-github", + "full_name": "peymanmortazavi/hackathon-github", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/hackathon-github", + "forks_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/hackathon-github/releases{/id}", + "created_at": "2014-09-16T00:00:50Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/peymanmortazavi/hackathon-github.git", + "ssh_url": "git@github.com:peymanmortazavi/hackathon-github.git", + "clone_url": "https://github.com/peymanmortazavi/hackathon-github.git", + "svn_url": "https://github.com/peymanmortazavi/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-16T00:00:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289658162", + "type": "ForkEvent", + "actor": { + "id": 3269358, + "login": "LoganBates", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "forkee": { + "id": 24078519, + "name": "hackathon-github", + "full_name": "LoganBates/hackathon-github", + "owner": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LoganBates/hackathon-github", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LoganBates/hackathon-github", + "forks_url": "https://api.github.com/repos/LoganBates/hackathon-github/forks", + "keys_url": "https://api.github.com/repos/LoganBates/hackathon-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LoganBates/hackathon-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LoganBates/hackathon-github/teams", + "hooks_url": "https://api.github.com/repos/LoganBates/hackathon-github/hooks", + "issue_events_url": "https://api.github.com/repos/LoganBates/hackathon-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/LoganBates/hackathon-github/events", + "assignees_url": "https://api.github.com/repos/LoganBates/hackathon-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/LoganBates/hackathon-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/LoganBates/hackathon-github/tags", + "blobs_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LoganBates/hackathon-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LoganBates/hackathon-github/languages", + "stargazers_url": "https://api.github.com/repos/LoganBates/hackathon-github/stargazers", + "contributors_url": "https://api.github.com/repos/LoganBates/hackathon-github/contributors", + "subscribers_url": "https://api.github.com/repos/LoganBates/hackathon-github/subscribers", + "subscription_url": "https://api.github.com/repos/LoganBates/hackathon-github/subscription", + "commits_url": "https://api.github.com/repos/LoganBates/hackathon-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LoganBates/hackathon-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LoganBates/hackathon-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LoganBates/hackathon-github/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LoganBates/hackathon-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/LoganBates/hackathon-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LoganBates/hackathon-github/merges", + "archive_url": "https://api.github.com/repos/LoganBates/hackathon-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LoganBates/hackathon-github/downloads", + "issues_url": "https://api.github.com/repos/LoganBates/hackathon-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/LoganBates/hackathon-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LoganBates/hackathon-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LoganBates/hackathon-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LoganBates/hackathon-github/labels{/name}", + "releases_url": "https://api.github.com/repos/LoganBates/hackathon-github/releases{/id}", + "created_at": "2014-09-15T23:58:39Z", + "updated_at": "2014-09-15T12:34:07Z", + "pushed_at": "2014-09-15T12:46:00Z", + "git_url": "git://github.com/LoganBates/hackathon-github.git", + "ssh_url": "git@github.com:LoganBates/hackathon-github.git", + "clone_url": "https://github.com/LoganBates/hackathon-github.git", + "svn_url": "https://github.com/LoganBates/hackathon-github", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T23:58:39Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289578037", + "type": "PullRequestEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 24, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/24", + "id": 21266915, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/24", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/24.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/24.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/24", + "number": 24, + "state": "open", + "locked": false, + "title": "Peyman Mortazavi", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "body": "I forgot to create the pull request, from the commits you can tell that I was finished though. Thanks.", + "created_at": "2014-09-15T23:00:47Z", + "updated_at": "2014-09-15T23:00:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/24/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/24/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/24/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/710843cabc3ee008ce908634441e9f1b96af2ead", + "head": { + "label": "peymanmortazavi:master", + "ref": "master", + "sha": "710843cabc3ee008ce908634441e9f1b96af2ead", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24043991, + "name": "project-1-make-a", + "full_name": "peymanmortazavi/project-1-make-a", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/project-1-make-a", + "description": "Peyman - Make 1-A", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a", + "forks_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T05:25:36Z", + "updated_at": "2014-09-15T05:41:30Z", + "pushed_at": "2014-09-15T05:41:30Z", + "git_url": "git://github.com/peymanmortazavi/project-1-make-a.git", + "ssh_url": "git@github.com:peymanmortazavi/project-1-make-a.git", + "clone_url": "https://github.com/peymanmortazavi/project-1-make-a.git", + "svn_url": "https://github.com/peymanmortazavi/project-1-make-a", + "homepage": "", + "size": 114, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "open_issues_count": 20, + "forks": 18, + "open_issues": 20, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/24" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/24" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/24" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/24/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/24/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/24/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/710843cabc3ee008ce908634441e9f1b96af2ead" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 7895, + "deletions": 79, + "changed_files": 4 + } + }, + "public": true, + "created_at": "2014-09-15T23:00:48Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289448196", + "type": "PullRequestEvent", + "actor": { + "id": 8550840, + "login": "dano8957", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 51, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/51", + "id": 21263138, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/51", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/51.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/51.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/51", + "number": 51, + "state": "open", + "locked": false, + "title": "Week 3 Challenge - Had Issues with Node JS and Postman", + "user": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "body": "Had some issues with NodeJS and Postman, would love to sit in office hours to unserstand this more that doesn't conflict with my work schedule.", + "created_at": "2014-09-15T21:43:50Z", + "updated_at": "2014-09-15T21:43:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/51/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/51/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/51/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/1db978a61e558959cdfda107941bb6cc9691e1e4", + "head": { + "label": "dano8957:master", + "ref": "master", + "sha": "1db978a61e558959cdfda107941bb6cc9691e1e4", + "user": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23970095, + "name": "challenge-week-3", + "full_name": "dano8957/challenge-week-3", + "owner": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dano8957/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dano8957/challenge-week-3", + "forks_url": "https://api.github.com/repos/dano8957/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/dano8957/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dano8957/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dano8957/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/dano8957/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/dano8957/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/dano8957/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/dano8957/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/dano8957/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/dano8957/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dano8957/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dano8957/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/dano8957/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/dano8957/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/dano8957/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/dano8957/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/dano8957/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dano8957/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dano8957/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dano8957/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/dano8957/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dano8957/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/dano8957/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dano8957/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/dano8957/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/dano8957/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dano8957/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dano8957/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dano8957/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/dano8957/challenge-week-3/releases{/id}", + "created_at": "2014-09-12T17:31:06Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T21:42:22Z", + "git_url": "git://github.com/dano8957/challenge-week-3.git", + "ssh_url": "git@github.com:dano8957/challenge-week-3.git", + "clone_url": "https://github.com/dano8957/challenge-week-3.git", + "svn_url": "https://github.com/dano8957/challenge-week-3", + "homepage": null, + "size": 98, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 29, + "forks": 22, + "open_issues": 29, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/51" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/51" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/51" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/51/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/51/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/51/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/1db978a61e558959cdfda107941bb6cc9691e1e4" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 25, + "deletions": 25, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-15T21:43:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2289005383", + "type": "PullRequestEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 23, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/23", + "id": 21249830, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/23", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/23.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/23.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/23", + "number": 23, + "state": "open", + "locked": false, + "title": "Forgot to submit this last night! I apologize", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "body": "Still needs a bit of work to get the data I am looking for, but I have hope!", + "created_at": "2014-09-15T18:12:37Z", + "updated_at": "2014-09-15T18:12:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/23/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/23/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/23/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/d86f43aa5008aa1f01169913ac5f12050790a5e0", + "head": { + "label": "develra:master", + "ref": "master", + "sha": "d86f43aa5008aa1f01169913ac5f12050790a5e0", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24046411, + "name": "project-1-make-a", + "full_name": "develra/project-1-make-a", + "owner": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/develra/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/develra/project-1-make-a", + "forks_url": "https://api.github.com/repos/develra/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/develra/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/develra/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/develra/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/develra/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/develra/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/develra/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/develra/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/develra/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/develra/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/develra/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/develra/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/develra/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/develra/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/develra/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/develra/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/develra/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/develra/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/develra/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/develra/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/develra/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/develra/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/develra/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/develra/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/develra/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/develra/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/develra/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/develra/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/develra/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/develra/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/develra/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/develra/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/develra/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/develra/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/develra/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T07:03:52Z", + "updated_at": "2014-09-15T18:12:00Z", + "pushed_at": "2014-09-15T18:12:00Z", + "git_url": "git://github.com/develra/project-1-make-a.git", + "ssh_url": "git@github.com:develra/project-1-make-a.git", + "clone_url": "https://github.com/develra/project-1-make-a.git", + "svn_url": "https://github.com/develra/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "open_issues_count": 19, + "forks": 18, + "open_issues": 19, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/23" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/23" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/23" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/23/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/23/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/23/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/d86f43aa5008aa1f01169913ac5f12050790a5e0" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 1444964, + "deletions": 41, + "changed_files": 4 + } + }, + "public": true, + "created_at": "2014-09-15T18:12:37Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2288683381", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 451779244, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "1d6a141850d4ea5898ea53834071a00c3db4a48b", + "before": "76e3e33abbc77c8bfe7177eaa95e4a89473d3a09", + "commits": [ + { + "sha": "1d6a141850d4ea5898ea53834071a00c3db4a48b", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Update footer.html", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/1d6a141850d4ea5898ea53834071a00c3db4a48b" + } + ] + }, + "public": true, + "created_at": "2014-09-15T15:41:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2288303332", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 451616342, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "76e3e33abbc77c8bfe7177eaa95e4a89473d3a09", + "before": "8082c4a9b48fb062d5ec8a536b7b5352b0cd8d00", + "commits": [ + { + "sha": "76e3e33abbc77c8bfe7177eaa95e4a89473d3a09", + "author": { + "email": "doubleshow@gmail.com", + "name": "Tom Yeh" + }, + "message": "hackathon github", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/76e3e33abbc77c8bfe7177eaa95e4a89473d3a09" + } + ] + }, + "public": true, + "created_at": "2014-09-15T12:48:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2288299862", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "push_id": 451614826, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "8623f44bd638276e7433d43cdd725d0f2a6a3b18", + "before": "8a98b2424187ec47fbc60c64ed167e41e32013b5", + "commits": [ + { + "sha": "8623f44bd638276e7433d43cdd725d0f2a6a3b18", + "author": { + "email": "doubleshow@gmail.com", + "name": "doubleshow" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits/8623f44bd638276e7433d43cdd725d0f2a6a3b18" + } + ] + }, + "public": true, + "created_at": "2014-09-15T12:46:00Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2288290008", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "push_id": 451610471, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "8a98b2424187ec47fbc60c64ed167e41e32013b5", + "before": "da51b1b3811a89957a8c8e6080733aceb6b0c749", + "commits": [ + { + "sha": "8a98b2424187ec47fbc60c64ed167e41e32013b5", + "author": { + "email": "doubleshow@gmail.com", + "name": "doubleshow" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits/8a98b2424187ec47fbc60c64ed167e41e32013b5" + } + ] + }, + "public": true, + "created_at": "2014-09-15T12:40:21Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2288279261", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "push_id": 451605613, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "da51b1b3811a89957a8c8e6080733aceb6b0c749", + "before": "75c8d2e7932344c503c736fbc9aefd614dac7691", + "commits": [ + { + "sha": "da51b1b3811a89957a8c8e6080733aceb6b0c749", + "author": { + "email": "doubleshow@gmail.com", + "name": "doubleshow" + }, + "message": "Create grabevents.js", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github/commits/da51b1b3811a89957a8c8e6080733aceb6b0c749" + } + ] + }, + "public": true, + "created_at": "2014-09-15T12:34:07Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2288277505", + "type": "CreateEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 24055645, + "name": "CSCI-4830-002-2014/hackathon-github", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/hackathon-github" + }, + "payload": { + "ref": null, + "ref_type": "repository", + "master_branch": "master", + "description": "", + "pusher_type": "user" + }, + "public": true, + "created_at": "2014-09-15T12:33:05Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287966773", + "type": "PullRequestEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 50, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/50", + "id": 21219881, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/50", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/50.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/50.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/50", + "number": 50, + "state": "open", + "locked": false, + "title": "Austin Wood – Challenge Week 3", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T09:01:43Z", + "updated_at": "2014-09-15T09:01:43Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/50/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/50/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/50/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/33ce90c53c8464077aebbfcb505fefd3926d366c", + "head": { + "label": "indiesquidge:master", + "ref": "master", + "sha": "33ce90c53c8464077aebbfcb505fefd3926d366c", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24007158, + "name": "challenge-week-3", + "full_name": "indiesquidge/challenge-week-3", + "owner": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/indiesquidge/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/indiesquidge/challenge-week-3", + "forks_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/releases{/id}", + "created_at": "2014-09-13T22:09:29Z", + "updated_at": "2014-09-14T00:21:13Z", + "pushed_at": "2014-09-15T09:00:01Z", + "git_url": "git://github.com/indiesquidge/challenge-week-3.git", + "ssh_url": "git@github.com:indiesquidge/challenge-week-3.git", + "clone_url": "https://github.com/indiesquidge/challenge-week-3.git", + "svn_url": "https://github.com/indiesquidge/challenge-week-3", + "homepage": null, + "size": 2608, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CoffeeScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 28, + "forks": 22, + "open_issues": 28, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/50" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/50" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/50" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/50/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/50/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/50/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/33ce90c53c8464077aebbfcb505fefd3926d366c" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 7, + "additions": 59100, + "deletions": 40, + "changed_files": 39 + } + }, + "public": true, + "created_at": "2014-09-15T09:01:43Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287874142", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/49", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/49/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/49/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/49/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/49", + "id": 42748389, + "number": 49, + "title": "This is Austin", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T07:53:51Z", + "updated_at": "2014-09-15T07:53:51Z", + "closed_at": null, + "body": "I ate dinner for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T07:53:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287819892", + "type": "ForkEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24046411, + "name": "project-1-make-a", + "full_name": "develra/project-1-make-a", + "owner": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/develra/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/develra/project-1-make-a", + "forks_url": "https://api.github.com/repos/develra/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/develra/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/develra/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/develra/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/develra/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/develra/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/develra/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/develra/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/develra/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/develra/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/develra/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/develra/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/develra/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/develra/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/develra/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/develra/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/develra/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/develra/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/develra/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/develra/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/develra/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/develra/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/develra/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/develra/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/develra/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/develra/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/develra/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/develra/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/develra/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/develra/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/develra/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/develra/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/develra/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/develra/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/develra/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T07:03:52Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/develra/project-1-make-a.git", + "ssh_url": "git@github.com:develra/project-1-make-a.git", + "clone_url": "https://github.com/develra/project-1-make-a.git", + "svn_url": "https://github.com/develra/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T07:03:52Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287816613", + "type": "PullRequestEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 22, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/22", + "id": 21215960, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/22", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/22.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/22.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/22", + "number": 22, + "state": "open", + "locked": false, + "title": "Add make-1 info", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T07:00:38Z", + "updated_at": "2014-09-15T07:00:38Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/22/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/22/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/22/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/515434a53404932b9d90f4813fd708d97581019d", + "head": { + "label": "ianks:master", + "ref": "master", + "sha": "515434a53404932b9d90f4813fd708d97581019d", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24045979, + "name": "project-1-make-a", + "full_name": "ianks/project-1-make-a", + "owner": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ianks/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/ianks/project-1-make-a", + "forks_url": "https://api.github.com/repos/ianks/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/ianks/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ianks/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ianks/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/ianks/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/ianks/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/ianks/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/ianks/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/ianks/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/ianks/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/ianks/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ianks/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ianks/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ianks/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ianks/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ianks/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/ianks/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/ianks/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/ianks/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/ianks/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/ianks/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ianks/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ianks/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ianks/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/ianks/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/ianks/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ianks/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/ianks/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ianks/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/ianks/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/ianks/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ianks/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ianks/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ianks/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/ianks/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T06:49:55Z", + "updated_at": "2014-09-15T07:00:04Z", + "pushed_at": "2014-09-15T07:00:04Z", + "git_url": "git://github.com/ianks/project-1-make-a.git", + "ssh_url": "git@github.com:ianks/project-1-make-a.git", + "clone_url": "https://github.com/ianks/project-1-make-a.git", + "svn_url": "https://github.com/ianks/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 17, + "mirror_url": null, + "open_issues_count": 18, + "forks": 17, + "open_issues": 18, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/22" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/22" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/22" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/22/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/22/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/22/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/515434a53404932b9d90f4813fd708d97581019d" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 80, + "deletions": 10, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-15T07:00:38Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287806557", + "type": "ForkEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24045979, + "name": "project-1-make-a", + "full_name": "ianks/project-1-make-a", + "owner": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ianks/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/ianks/project-1-make-a", + "forks_url": "https://api.github.com/repos/ianks/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/ianks/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ianks/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ianks/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/ianks/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/ianks/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/ianks/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/ianks/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/ianks/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/ianks/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/ianks/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ianks/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ianks/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ianks/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ianks/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ianks/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/ianks/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/ianks/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/ianks/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/ianks/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/ianks/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ianks/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ianks/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ianks/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/ianks/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/ianks/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ianks/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/ianks/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ianks/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/ianks/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/ianks/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ianks/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ianks/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ianks/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/ianks/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T06:49:55Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/ianks/project-1-make-a.git", + "ssh_url": "git@github.com:ianks/project-1-make-a.git", + "clone_url": "https://github.com/ianks/project-1-make-a.git", + "svn_url": "https://github.com/ianks/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T06:49:56Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287802836", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 451396221, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "8082c4a9b48fb062d5ec8a536b7b5352b0cd8d00", + "before": "1a93ffcc50835e81e9b18e4586b4505f53bbf3e7", + "commits": [ + { + "sha": "8082c4a9b48fb062d5ec8a536b7b5352b0cd8d00", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Update footer.html", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/8082c4a9b48fb062d5ec8a536b7b5352b0cd8d00" + } + ] + }, + "public": true, + "created_at": "2014-09-15T06:45:55Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287801571", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 451395645, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "1a93ffcc50835e81e9b18e4586b4505f53bbf3e7", + "before": "b5a216816f4ce89256462b6c85d482c4283371f2", + "commits": [ + { + "sha": "1a93ffcc50835e81e9b18e4586b4505f53bbf3e7", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Update footer.html", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/1a93ffcc50835e81e9b18e4586b4505f53bbf3e7" + } + ] + }, + "public": true, + "created_at": "2014-09-15T06:44:30Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287800987", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 451395400, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "b5a216816f4ce89256462b6c85d482c4283371f2", + "before": "9562debfea95f751a3626e318098f99518527d1c", + "commits": [ + { + "sha": "b5a216816f4ce89256462b6c85d482c4283371f2", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Update footer.html", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/b5a216816f4ce89256462b6c85d482c4283371f2" + } + ] + }, + "public": true, + "created_at": "2014-09-15T06:43:52Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287800182", + "type": "PushEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 22741557, + "name": "CSCI-4830-002-2014/CSCI-4830-002-2014.github.io", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io" + }, + "payload": { + "push_id": 451395053, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "9562debfea95f751a3626e318098f99518527d1c", + "before": "2cca01e40e2aed276e2aa59504f7abbb41955b2f", + "commits": [ + { + "sha": "9562debfea95f751a3626e318098f99518527d1c", + "author": { + "email": "doorsofskirpan@gmail.com", + "name": "Michael Warren Skirpan" + }, + "message": "Added office hours", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/CSCI-4830-002-2014.github.io/commits/9562debfea95f751a3626e318098f99518527d1c" + } + ] + }, + "public": true, + "created_at": "2014-09-15T06:42:59Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287769581", + "type": "PullRequestEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 48, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/48", + "id": 21214845, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/48", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/48.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/48.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/48", + "number": 48, + "state": "open", + "locked": false, + "title": "Sort of done by due time, another half hour of work", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "body": "Splunk stopped me for about half an hour as I figured out how to clean the index... The dropbox pictures also don't appear to be working as planned", + "created_at": "2014-09-15T06:07:37Z", + "updated_at": "2014-09-15T06:07:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/48/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/48/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/48/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/002d77363a16008985f7bd5304a3a1af12a6aa7b", + "head": { + "label": "develra:master", + "ref": "master", + "sha": "002d77363a16008985f7bd5304a3a1af12a6aa7b", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24040767, + "name": "challenge-week-3", + "full_name": "develra/challenge-week-3", + "owner": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/develra/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/develra/challenge-week-3", + "forks_url": "https://api.github.com/repos/develra/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/develra/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/develra/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/develra/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/develra/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/develra/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/develra/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/develra/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/develra/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/develra/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/develra/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/develra/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/develra/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/develra/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/develra/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/develra/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/develra/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/develra/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/develra/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/develra/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/develra/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/develra/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/develra/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/develra/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/develra/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/develra/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/develra/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/develra/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/develra/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/develra/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/develra/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/develra/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/develra/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/develra/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/develra/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T03:03:08Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T06:06:02Z", + "git_url": "git://github.com/develra/challenge-week-3.git", + "ssh_url": "git@github.com:develra/challenge-week-3.git", + "clone_url": "https://github.com/develra/challenge-week-3.git", + "svn_url": "https://github.com/develra/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 26, + "forks": 22, + "open_issues": 26, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/48" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/48" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/48" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/48/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/48/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/48/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/002d77363a16008985f7bd5304a3a1af12a6aa7b" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 24, + "deletions": 24, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-15T06:07:37Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287762629", + "type": "PullRequestEvent", + "actor": { + "id": 3269358, + "login": "LoganBates", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 21, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/21", + "id": 21214693, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/21", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/21.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/21.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/21", + "number": 21, + "state": "open", + "locked": false, + "title": "fsadf", + "user": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T05:58:27Z", + "updated_at": "2014-09-15T05:58:27Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/21/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/21/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/21/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/da3ff2b1c97521217d135e780579eac6fc206c4a", + "head": { + "label": "LoganBates:master", + "ref": "master", + "sha": "da3ff2b1c97521217d135e780579eac6fc206c4a", + "user": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24044514, + "name": "project-1-make-a", + "full_name": "LoganBates/project-1-make-a", + "owner": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LoganBates/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LoganBates/project-1-make-a", + "forks_url": "https://api.github.com/repos/LoganBates/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/LoganBates/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LoganBates/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LoganBates/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/LoganBates/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/LoganBates/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/LoganBates/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/LoganBates/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/LoganBates/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/LoganBates/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LoganBates/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LoganBates/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/LoganBates/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/LoganBates/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/LoganBates/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/LoganBates/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/LoganBates/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LoganBates/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LoganBates/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LoganBates/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/LoganBates/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LoganBates/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/LoganBates/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LoganBates/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/LoganBates/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/LoganBates/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LoganBates/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LoganBates/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LoganBates/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/LoganBates/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T05:50:09Z", + "updated_at": "2014-09-15T05:55:30Z", + "pushed_at": "2014-09-15T05:58:17Z", + "git_url": "git://github.com/LoganBates/project-1-make-a.git", + "ssh_url": "git@github.com:LoganBates/project-1-make-a.git", + "clone_url": "https://github.com/LoganBates/project-1-make-a.git", + "svn_url": "https://github.com/LoganBates/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "open_issues_count": 17, + "forks": 16, + "open_issues": 17, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/21" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/21" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/21" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/21/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/21/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/21/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/da3ff2b1c97521217d135e780579eac6fc206c4a" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 2, + "additions": 834089, + "deletions": 11, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2014-09-15T05:58:28Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287761884", + "type": "PullRequestEvent", + "actor": { + "id": 3269358, + "login": "LoganBates", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 47, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/47", + "id": 21214683, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/47", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/47.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/47.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/47", + "number": 47, + "state": "open", + "locked": false, + "title": "Done with challenge 3", + "user": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T05:57:31Z", + "updated_at": "2014-09-15T05:57:31Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/47/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/47/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/47/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/92c01b8a77e143c78a2d6ccdd7e6e88fa9119d60", + "head": { + "label": "LoganBates:master", + "ref": "master", + "sha": "92c01b8a77e143c78a2d6ccdd7e6e88fa9119d60", + "user": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24028574, + "name": "challenge-week-3", + "full_name": "LoganBates/challenge-week-3", + "owner": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LoganBates/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LoganBates/challenge-week-3", + "forks_url": "https://api.github.com/repos/LoganBates/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/LoganBates/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LoganBates/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LoganBates/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/LoganBates/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/LoganBates/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/LoganBates/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/LoganBates/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/LoganBates/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/LoganBates/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LoganBates/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LoganBates/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/LoganBates/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/LoganBates/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/LoganBates/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/LoganBates/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/LoganBates/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LoganBates/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LoganBates/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LoganBates/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/LoganBates/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LoganBates/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/LoganBates/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LoganBates/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/LoganBates/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/LoganBates/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LoganBates/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LoganBates/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LoganBates/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/LoganBates/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T17:41:22Z", + "updated_at": "2014-09-15T05:45:59Z", + "pushed_at": "2014-09-15T05:57:02Z", + "git_url": "git://github.com/LoganBates/challenge-week-3.git", + "ssh_url": "git@github.com:LoganBates/challenge-week-3.git", + "clone_url": "https://github.com/LoganBates/challenge-week-3.git", + "svn_url": "https://github.com/LoganBates/challenge-week-3", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 25, + "forks": 22, + "open_issues": 25, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/47" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/47" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/47" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/47/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/47/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/47/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/92c01b8a77e143c78a2d6ccdd7e6e88fa9119d60" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 7, + "additions": 86, + "deletions": 29, + "changed_files": 30 + } + }, + "public": true, + "created_at": "2014-09-15T05:57:32Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287759461", + "type": "PullRequestEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 20, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/20", + "id": 21214619, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/20", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/20.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/20.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/20", + "number": 20, + "state": "open", + "locked": false, + "title": "Added responses", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T05:54:05Z", + "updated_at": "2014-09-15T05:54:05Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "0a4bf0187d723c2cecfb2f6211beda6bd2ac8ae9", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/20/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/20/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/20/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/d540d7eb713c1d0efd931df13ffe54221f6e83da", + "head": { + "label": "alne4294:master", + "ref": "master", + "sha": "d540d7eb713c1d0efd931df13ffe54221f6e83da", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24024694, + "name": "project-1-make-a", + "full_name": "alne4294/project-1-make-a", + "owner": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alne4294/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/alne4294/project-1-make-a", + "forks_url": "https://api.github.com/repos/alne4294/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/alne4294/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alne4294/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alne4294/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/alne4294/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/alne4294/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/alne4294/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/alne4294/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/alne4294/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/alne4294/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alne4294/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alne4294/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/alne4294/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/alne4294/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/alne4294/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/alne4294/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/alne4294/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alne4294/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alne4294/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/alne4294/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/alne4294/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alne4294/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/alne4294/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alne4294/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/alne4294/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/alne4294/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alne4294/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alne4294/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alne4294/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/alne4294/project-1-make-a/releases{/id}", + "created_at": "2014-09-14T14:58:14Z", + "updated_at": "2014-09-15T05:33:01Z", + "pushed_at": "2014-09-15T05:51:21Z", + "git_url": "git://github.com/alne4294/project-1-make-a.git", + "ssh_url": "git@github.com:alne4294/project-1-make-a.git", + "clone_url": "https://github.com/alne4294/project-1-make-a.git", + "svn_url": "https://github.com/alne4294/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "open_issues_count": 16, + "forks": 16, + "open_issues": 16, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/20" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/20" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/20" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/20/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/20/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/20/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/d540d7eb713c1d0efd931df13ffe54221f6e83da" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 2, + "additions": 188, + "deletions": 11, + "changed_files": 6 + } + }, + "public": true, + "created_at": "2014-09-15T05:54:06Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287756635", + "type": "ForkEvent", + "actor": { + "id": 3269358, + "login": "LoganBates", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24044514, + "name": "project-1-make-a", + "full_name": "LoganBates/project-1-make-a", + "owner": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LoganBates/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LoganBates/project-1-make-a", + "forks_url": "https://api.github.com/repos/LoganBates/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/LoganBates/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LoganBates/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LoganBates/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/LoganBates/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/LoganBates/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/LoganBates/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/LoganBates/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/LoganBates/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/LoganBates/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LoganBates/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LoganBates/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/LoganBates/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/LoganBates/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/LoganBates/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/LoganBates/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/LoganBates/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LoganBates/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LoganBates/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LoganBates/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LoganBates/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/LoganBates/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LoganBates/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/LoganBates/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LoganBates/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/LoganBates/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/LoganBates/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LoganBates/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LoganBates/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LoganBates/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/LoganBates/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T05:50:09Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/LoganBates/project-1-make-a.git", + "ssh_url": "git@github.com:LoganBates/project-1-make-a.git", + "clone_url": "https://github.com/LoganBates/project-1-make-a.git", + "svn_url": "https://github.com/LoganBates/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T05:50:09Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287754653", + "type": "PullRequestEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 19, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/19", + "id": 21214530, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/19", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/19.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/19.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/19", + "number": 19, + "state": "open", + "locked": false, + "title": "Austin Wood – Project 1 Make A", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T05:47:21Z", + "updated_at": "2014-09-15T05:47:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/19/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/19/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/19/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/2fb1ba879902b28947322a2b386d1f82b76b281f", + "head": { + "label": "indiesquidge:master", + "ref": "master", + "sha": "2fb1ba879902b28947322a2b386d1f82b76b281f", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23928528, + "name": "project-1-make-a", + "full_name": "indiesquidge/project-1-make-a", + "owner": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/indiesquidge/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/indiesquidge/project-1-make-a", + "forks_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/releases{/id}", + "created_at": "2014-09-11T17:34:41Z", + "updated_at": "2014-09-15T05:28:09Z", + "pushed_at": "2014-09-15T05:44:39Z", + "git_url": "git://github.com/indiesquidge/project-1-make-a.git", + "ssh_url": "git@github.com:indiesquidge/project-1-make-a.git", + "clone_url": "https://github.com/indiesquidge/project-1-make-a.git", + "svn_url": "https://github.com/indiesquidge/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "open_issues_count": 15, + "forks": 15, + "open_issues": 15, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/19" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/19" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/19" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/19/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/19/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/19/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/2fb1ba879902b28947322a2b386d1f82b76b281f" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 73788, + "deletions": 26, + "changed_files": 8 + } + }, + "public": true, + "created_at": "2014-09-15T05:47:21Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287753980", + "type": "IssueCommentEvent", + "actor": { + "id": 5599320, + "login": "jakewhite8", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46", + "id": 42743226, + "number": 46, + "title": "week 3", + "user": { + "login": "jakewhite8", + "id": 5599320, + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?v=2", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "html_url": "https://github.com/jakewhite8", + "followers_url": "https://api.github.com/users/jakewhite8/followers", + "following_url": "https://api.github.com/users/jakewhite8/following{/other_user}", + "gists_url": "https://api.github.com/users/jakewhite8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakewhite8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakewhite8/subscriptions", + "organizations_url": "https://api.github.com/users/jakewhite8/orgs", + "repos_url": "https://api.github.com/users/jakewhite8/repos", + "events_url": "https://api.github.com/users/jakewhite8/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakewhite8/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-15T05:46:01Z", + "updated_at": "2014-09-15T05:46:25Z", + "closed_at": null, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/46", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46.patch" + }, + "body": "" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55554577", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46#issuecomment-55554577", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46", + "id": 55554577, + "user": { + "login": "jakewhite8", + "id": 5599320, + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?v=2", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "html_url": "https://github.com/jakewhite8", + "followers_url": "https://api.github.com/users/jakewhite8/followers", + "following_url": "https://api.github.com/users/jakewhite8/following{/other_user}", + "gists_url": "https://api.github.com/users/jakewhite8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakewhite8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakewhite8/subscriptions", + "organizations_url": "https://api.github.com/users/jakewhite8/orgs", + "repos_url": "https://api.github.com/users/jakewhite8/repos", + "events_url": "https://api.github.com/users/jakewhite8/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakewhite8/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-15T05:46:25Z", + "updated_at": "2014-09-15T05:46:25Z", + "body": "week 3" + } + }, + "public": true, + "created_at": "2014-09-15T05:46:27Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287753704", + "type": "PullRequestEvent", + "actor": { + "id": 5599320, + "login": "jakewhite8", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 46, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/46", + "id": 21214509, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46", + "number": 46, + "state": "open", + "locked": false, + "title": "week 3", + "user": { + "login": "jakewhite8", + "id": 5599320, + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?v=2", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "html_url": "https://github.com/jakewhite8", + "followers_url": "https://api.github.com/users/jakewhite8/followers", + "following_url": "https://api.github.com/users/jakewhite8/following{/other_user}", + "gists_url": "https://api.github.com/users/jakewhite8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakewhite8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakewhite8/subscriptions", + "organizations_url": "https://api.github.com/users/jakewhite8/orgs", + "repos_url": "https://api.github.com/users/jakewhite8/repos", + "events_url": "https://api.github.com/users/jakewhite8/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakewhite8/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T05:46:01Z", + "updated_at": "2014-09-15T05:46:01Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "59b666c8c208f14a870da88de862de181df7096f", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/46/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/46/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/ea0d31aa9b31decef86b4712c567cb6cfe6f9d1e", + "head": { + "label": "jakewhite8:master", + "ref": "master", + "sha": "ea0d31aa9b31decef86b4712c567cb6cfe6f9d1e", + "user": { + "login": "jakewhite8", + "id": 5599320, + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?v=2", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "html_url": "https://github.com/jakewhite8", + "followers_url": "https://api.github.com/users/jakewhite8/followers", + "following_url": "https://api.github.com/users/jakewhite8/following{/other_user}", + "gists_url": "https://api.github.com/users/jakewhite8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakewhite8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakewhite8/subscriptions", + "organizations_url": "https://api.github.com/users/jakewhite8/orgs", + "repos_url": "https://api.github.com/users/jakewhite8/repos", + "events_url": "https://api.github.com/users/jakewhite8/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakewhite8/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24038351, + "name": "challenge-week-3", + "full_name": "jakewhite8/challenge-week-3", + "owner": { + "login": "jakewhite8", + "id": 5599320, + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?v=2", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "html_url": "https://github.com/jakewhite8", + "followers_url": "https://api.github.com/users/jakewhite8/followers", + "following_url": "https://api.github.com/users/jakewhite8/following{/other_user}", + "gists_url": "https://api.github.com/users/jakewhite8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakewhite8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakewhite8/subscriptions", + "organizations_url": "https://api.github.com/users/jakewhite8/orgs", + "repos_url": "https://api.github.com/users/jakewhite8/repos", + "events_url": "https://api.github.com/users/jakewhite8/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakewhite8/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakewhite8/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakewhite8/challenge-week-3", + "forks_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T01:26:54Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T05:45:37Z", + "git_url": "git://github.com/jakewhite8/challenge-week-3.git", + "ssh_url": "git@github.com:jakewhite8/challenge-week-3.git", + "clone_url": "https://github.com/jakewhite8/challenge-week-3.git", + "svn_url": "https://github.com/jakewhite8/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 24, + "forks": 22, + "open_issues": 24, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/46" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/46" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/46/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/46/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/46/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/ea0d31aa9b31decef86b4712c567cb6cfe6f9d1e" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 10, + "deletions": 10, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-15T05:46:03Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287746348", + "type": "PullRequestEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 18, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/18", + "id": 21214334, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/18", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/18.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/18.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/18", + "number": 18, + "state": "open", + "locked": false, + "title": "Completed project-1-make-a", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "body": "Absolutely loved it. The hands on portion of this class is more enjoyable and educational than the software portion. I also love that we focus on modern inventions like the Arduino. More Arduino code!", + "created_at": "2014-09-15T05:35:36Z", + "updated_at": "2014-09-15T05:35:36Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/18/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/18/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/18/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/49bce0d2fc054ed26162f6484f0969fa3abbf085", + "head": { + "label": "dawsonbotsford:master", + "ref": "master", + "sha": "49bce0d2fc054ed26162f6484f0969fa3abbf085", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23940373, + "name": "project-1-make-a", + "full_name": "dawsonbotsford/project-1-make-a", + "owner": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dawsonbotsford/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a", + "forks_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/releases{/id}", + "created_at": "2014-09-12T00:05:54Z", + "updated_at": "2014-09-12T00:06:27Z", + "pushed_at": "2014-09-15T05:29:44Z", + "git_url": "git://github.com/dawsonbotsford/project-1-make-a.git", + "ssh_url": "git@github.com:dawsonbotsford/project-1-make-a.git", + "clone_url": "https://github.com/dawsonbotsford/project-1-make-a.git", + "svn_url": "https://github.com/dawsonbotsford/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 15, + "mirror_url": null, + "open_issues_count": 14, + "forks": 15, + "open_issues": 14, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/18" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/18" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/18" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/18/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/18/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/18/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/49bce0d2fc054ed26162f6484f0969fa3abbf085" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 34828, + "deletions": 12, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2014-09-15T05:35:36Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287739230", + "type": "ForkEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24043991, + "name": "project-1-make-a", + "full_name": "peymanmortazavi/project-1-make-a", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a", + "forks_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T05:25:36Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/peymanmortazavi/project-1-make-a.git", + "ssh_url": "git@github.com:peymanmortazavi/project-1-make-a.git", + "clone_url": "https://github.com/peymanmortazavi/project-1-make-a.git", + "svn_url": "https://github.com/peymanmortazavi/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T05:25:37Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287738155", + "type": "IssuesEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/45", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/45/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/45/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/45/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/45", + "id": 42742223, + "number": 45, + "title": "This is Michael Aaron", + "user": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T05:24:03Z", + "updated_at": "2014-09-15T05:24:03Z", + "closed_at": null, + "body": "I drank beer for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T05:24:03Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287729927", + "type": "PullRequestEvent", + "actor": { + "id": 1976777, + "login": "JoshFerge", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 17, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/17", + "id": 21213993, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/17", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/17.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/17.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/17", + "number": 17, + "state": "open", + "locked": false, + "title": "done", + "user": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T05:11:54Z", + "updated_at": "2014-09-15T05:11:54Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/17/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/17/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/17/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/a432c679a5d0aa240d18c55233fb3ebc2d8c3d9e", + "head": { + "label": "JoshFerge:master", + "ref": "master", + "sha": "a432c679a5d0aa240d18c55233fb3ebc2d8c3d9e", + "user": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23642682, + "name": "project-1-make-a", + "full_name": "JoshFerge/project-1-make-a", + "owner": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/JoshFerge/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/JoshFerge/project-1-make-a", + "forks_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/JoshFerge/project-1-make-a/releases{/id}", + "created_at": "2014-09-04T00:30:35Z", + "updated_at": "2014-09-15T05:11:14Z", + "pushed_at": "2014-09-15T05:11:12Z", + "git_url": "git://github.com/JoshFerge/project-1-make-a.git", + "ssh_url": "git@github.com:JoshFerge/project-1-make-a.git", + "clone_url": "https://github.com/JoshFerge/project-1-make-a.git", + "svn_url": "https://github.com/JoshFerge/project-1-make-a", + "homepage": null, + "size": 55, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "open_issues_count": 13, + "forks": 14, + "open_issues": 13, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/17" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/17" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/17" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/17/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/17/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/17/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/a432c679a5d0aa240d18c55233fb3ebc2d8c3d9e" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 5508, + "deletions": 11, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2014-09-15T05:11:54Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287728403", + "type": "IssuesEvent", + "actor": { + "id": 3269358, + "login": "LoganBates", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/44", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/44/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/44/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/44/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/44", + "id": 42741838, + "number": 44, + "title": "This is Logan Bates", + "user": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T05:09:44Z", + "updated_at": "2014-09-15T05:09:44Z", + "closed_at": null, + "body": "I ate dog for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T05:09:44Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287726144", + "type": "PullRequestEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 43, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/43", + "id": 21213910, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/43", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/43.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/43.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/43", + "number": 43, + "state": "open", + "locked": false, + "title": "Finished.", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T05:06:10Z", + "updated_at": "2014-09-15T05:06:10Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/43/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/43/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/43/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/a14d8f12f39304a370decbe0966a9eb4d071f459", + "head": { + "label": "alne4294:master", + "ref": "master", + "sha": "a14d8f12f39304a370decbe0966a9eb4d071f459", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24024714, + "name": "challenge-week-3", + "full_name": "alne4294/challenge-week-3", + "owner": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alne4294/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/alne4294/challenge-week-3", + "forks_url": "https://api.github.com/repos/alne4294/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/alne4294/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alne4294/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alne4294/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/alne4294/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/alne4294/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/alne4294/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/alne4294/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/alne4294/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/alne4294/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alne4294/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alne4294/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/alne4294/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/alne4294/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/alne4294/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/alne4294/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/alne4294/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alne4294/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alne4294/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/alne4294/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/alne4294/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alne4294/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/alne4294/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alne4294/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/alne4294/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/alne4294/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alne4294/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alne4294/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alne4294/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/alne4294/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T14:59:00Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T05:03:30Z", + "git_url": "git://github.com/alne4294/challenge-week-3.git", + "ssh_url": "git@github.com:alne4294/challenge-week-3.git", + "clone_url": "https://github.com/alne4294/challenge-week-3.git", + "svn_url": "https://github.com/alne4294/challenge-week-3", + "homepage": null, + "size": 1402, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 21, + "forks": 22, + "open_issues": 21, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/43" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/43" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/43" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/43/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/43/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/43/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/a14d8f12f39304a370decbe0966a9eb4d071f459" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 6, + "additions": 40, + "deletions": 38, + "changed_files": 25 + } + }, + "public": true, + "created_at": "2014-09-15T05:06:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287721450", + "type": "PullRequestEvent", + "actor": { + "id": 1976777, + "login": "JoshFerge", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 42, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/42", + "id": 21213815, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/42", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/42.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/42.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/42", + "number": 42, + "state": "open", + "locked": false, + "title": "Finished :)", + "user": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T04:59:22Z", + "updated_at": "2014-09-15T04:59:22Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/42/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/42/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/42/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/88dec08a604618267e01fa8e96cb4789d85db997", + "head": { + "label": "JoshFerge:master", + "ref": "master", + "sha": "88dec08a604618267e01fa8e96cb4789d85db997", + "user": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24037738, + "name": "challenge-week-3", + "full_name": "JoshFerge/challenge-week-3", + "owner": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/JoshFerge/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/JoshFerge/challenge-week-3", + "forks_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T00:58:56Z", + "updated_at": "2014-09-15T04:53:17Z", + "pushed_at": "2014-09-15T04:57:03Z", + "git_url": "git://github.com/JoshFerge/challenge-week-3.git", + "ssh_url": "git@github.com:JoshFerge/challenge-week-3.git", + "clone_url": "https://github.com/JoshFerge/challenge-week-3.git", + "svn_url": "https://github.com/JoshFerge/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 20, + "forks": 22, + "open_issues": 20, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/42" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/42" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/42" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/42/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/42/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/42/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/88dec08a604618267e01fa8e96cb4789d85db997" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 2, + "additions": 95987, + "deletions": 35, + "changed_files": 1401 + } + }, + "public": true, + "created_at": "2014-09-15T04:59:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287688873", + "type": "PullRequestEvent", + "actor": { + "id": 7736082, + "login": "Irfann1", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 16, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/16", + "id": 21213052, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/16", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/16.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/16.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/16", + "number": 16, + "state": "open", + "locked": false, + "title": "Irfan Nadiadi Project 1-make-a", + "user": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T04:08:35Z", + "updated_at": "2014-09-15T04:08:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/16/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/16/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/16/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/03d8e02ddc31fb7ea2352e574043d78c11d8c431", + "head": { + "label": "Irfann1:master", + "ref": "master", + "sha": "03d8e02ddc31fb7ea2352e574043d78c11d8c431", + "user": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23692481, + "name": "project-1-make-a", + "full_name": "Irfann1/project-1-make-a", + "owner": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Irfann1/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/Irfann1/project-1-make-a", + "forks_url": "https://api.github.com/repos/Irfann1/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/Irfann1/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Irfann1/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Irfann1/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/Irfann1/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/Irfann1/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/Irfann1/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/Irfann1/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/Irfann1/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/Irfann1/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/Irfann1/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Irfann1/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Irfann1/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Irfann1/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Irfann1/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Irfann1/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/Irfann1/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/Irfann1/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/Irfann1/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/Irfann1/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/Irfann1/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Irfann1/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Irfann1/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Irfann1/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/Irfann1/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/Irfann1/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Irfann1/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/Irfann1/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Irfann1/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/Irfann1/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/Irfann1/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Irfann1/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Irfann1/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Irfann1/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/Irfann1/project-1-make-a/releases{/id}", + "created_at": "2014-09-05T06:17:28Z", + "updated_at": "2014-09-15T03:48:11Z", + "pushed_at": "2014-09-15T04:05:31Z", + "git_url": "git://github.com/Irfann1/project-1-make-a.git", + "ssh_url": "git@github.com:Irfann1/project-1-make-a.git", + "clone_url": "https://github.com/Irfann1/project-1-make-a.git", + "svn_url": "https://github.com/Irfann1/project-1-make-a", + "homepage": null, + "size": 55, + "stargazers_count": 0, + "watchers_count": 0, + "language": "C++", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "open_issues_count": 12, + "forks": 14, + "open_issues": 12, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/16" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/16" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/16" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/16/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/16/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/16/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/03d8e02ddc31fb7ea2352e574043d78c11d8c431" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 28435, + "deletions": 15, + "changed_files": 6 + } + }, + "public": true, + "created_at": "2014-09-15T04:08:36Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287674962", + "type": "PullRequestEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 41, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/41", + "id": 21212783, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/41", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/41.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/41.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/41", + "number": 41, + "state": "open", + "locked": false, + "title": "Chris Wittenberg: Finished Challenge 3", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T03:49:37Z", + "updated_at": "2014-09-15T03:49:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "945a1c40d5accf993fc7bf693582c880c5ed6667", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/41/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/41/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/41/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/90c4fa64fe96890e3ee05ce772add439ed46e67b", + "head": { + "label": "cwitty1919:master", + "ref": "master", + "sha": "90c4fa64fe96890e3ee05ce772add439ed46e67b", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23938388, + "name": "challenge-week-3", + "full_name": "cwitty1919/challenge-week-3", + "owner": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/cwitty1919/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/cwitty1919/challenge-week-3", + "forks_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/releases{/id}", + "created_at": "2014-09-11T22:39:11Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T03:48:52Z", + "git_url": "git://github.com/cwitty1919/challenge-week-3.git", + "ssh_url": "git@github.com:cwitty1919/challenge-week-3.git", + "clone_url": "https://github.com/cwitty1919/challenge-week-3.git", + "svn_url": "https://github.com/cwitty1919/challenge-week-3", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 19, + "forks": 22, + "open_issues": 19, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/41" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/41" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/41" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/41/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/41/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/41/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/90c4fa64fe96890e3ee05ce772add439ed46e67b" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 40, + "deletions": 36, + "changed_files": 27 + } + }, + "public": true, + "created_at": "2014-09-15T03:49:40Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287671540", + "type": "PullRequestEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 40, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/40", + "id": 21212709, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/40", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/40.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/40.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/40", + "number": 40, + "state": "open", + "locked": false, + "title": "Completed week 3 challenge", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T03:44:47Z", + "updated_at": "2014-09-15T03:44:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/40/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/40/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/40/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/df5cad1fbcb257fdcef774f058d6af5fbf8f2bf8", + "head": { + "label": "dawsonbotsford:master", + "ref": "master", + "sha": "df5cad1fbcb257fdcef774f058d6af5fbf8f2bf8", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23940540, + "name": "challenge-week-3", + "full_name": "dawsonbotsford/challenge-week-3", + "owner": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dawsonbotsford/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3", + "forks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/releases{/id}", + "created_at": "2014-09-12T00:13:30Z", + "updated_at": "2014-09-14T22:44:59Z", + "pushed_at": "2014-09-15T03:43:14Z", + "git_url": "git://github.com/dawsonbotsford/challenge-week-3.git", + "ssh_url": "git@github.com:dawsonbotsford/challenge-week-3.git", + "clone_url": "https://github.com/dawsonbotsford/challenge-week-3.git", + "svn_url": "https://github.com/dawsonbotsford/challenge-week-3", + "homepage": null, + "size": 336, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 18, + "forks": 22, + "open_issues": 18, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/40" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/40" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/40" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/40/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/40/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/40/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/df5cad1fbcb257fdcef774f058d6af5fbf8f2bf8" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 7, + "additions": 133539, + "deletions": 36, + "changed_files": 316 + } + }, + "public": true, + "created_at": "2014-09-15T03:44:47Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287668997", + "type": "IssuesEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/39", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/39/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/39/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/39/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/39", + "id": 42739371, + "number": 39, + "title": "This is Chris Wittenberg", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T03:41:04Z", + "updated_at": "2014-09-15T03:41:04Z", + "closed_at": null, + "body": "I ate bananas for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T03:41:04Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287667431", + "type": "PullRequestEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 38, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/38", + "id": 21212623, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/38", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/38.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/38.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/38", + "number": 38, + "state": "open", + "locked": false, + "title": "[Submission] Challenge week 3 -- Ian Ker-Seymer ", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T03:38:52Z", + "updated_at": "2014-09-15T03:38:52Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "852fadfd88b240ae793832baf7a350d62bb38be6", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/38/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/38/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/38/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/5836f27d9a487634b3390782ef4e034e7d01b42f", + "head": { + "label": "ianks:master", + "ref": "master", + "sha": "5836f27d9a487634b3390782ef4e034e7d01b42f", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24034367, + "name": "challenge-week-3", + "full_name": "ianks/challenge-week-3", + "owner": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ianks/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/ianks/challenge-week-3", + "forks_url": "https://api.github.com/repos/ianks/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/ianks/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ianks/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ianks/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/ianks/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/ianks/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/ianks/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/ianks/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/ianks/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/ianks/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/ianks/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ianks/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ianks/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ianks/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ianks/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ianks/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/ianks/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/ianks/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/ianks/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/ianks/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/ianks/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ianks/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ianks/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ianks/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/ianks/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/ianks/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ianks/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/ianks/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ianks/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/ianks/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/ianks/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ianks/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ianks/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ianks/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/ianks/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T21:52:26Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T03:36:59Z", + "git_url": "git://github.com/ianks/challenge-week-3.git", + "ssh_url": "git@github.com:ianks/challenge-week-3.git", + "clone_url": "https://github.com/ianks/challenge-week-3.git", + "svn_url": "https://github.com/ianks/challenge-week-3", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 16, + "forks": 22, + "open_issues": 16, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/38" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/38" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/38" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/38/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/38/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/38/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/5836f27d9a487634b3390782ef4e034e7d01b42f" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 4, + "additions": 111, + "deletions": 44, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-15T03:38:52Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287666679", + "type": "PullRequestEvent", + "actor": { + "id": 7736082, + "login": "Irfann1", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 37, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/37", + "id": 21212610, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/37", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/37.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/37.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/37", + "number": 37, + "state": "open", + "locked": false, + "title": "Irfan Nadiadi Learning Challenge 3", + "user": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T03:37:49Z", + "updated_at": "2014-09-15T03:37:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "ad749d1f17f018022c27e9f4b715f34df2e80592", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/37/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/37/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/37/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/fa5d532303d8b3d2d37ce144d6872320987a90aa", + "head": { + "label": "Irfann1:master", + "ref": "master", + "sha": "fa5d532303d8b3d2d37ce144d6872320987a90aa", + "user": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23999396, + "name": "challenge-week-3", + "full_name": "Irfann1/challenge-week-3", + "owner": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Irfann1/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/Irfann1/challenge-week-3", + "forks_url": "https://api.github.com/repos/Irfann1/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/Irfann1/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Irfann1/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Irfann1/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/Irfann1/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/Irfann1/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/Irfann1/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/Irfann1/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/Irfann1/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/Irfann1/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Irfann1/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Irfann1/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/Irfann1/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/Irfann1/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/Irfann1/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/Irfann1/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/Irfann1/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Irfann1/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Irfann1/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/Irfann1/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/Irfann1/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Irfann1/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/Irfann1/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Irfann1/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/Irfann1/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/Irfann1/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Irfann1/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Irfann1/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Irfann1/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/Irfann1/challenge-week-3/releases{/id}", + "created_at": "2014-09-13T16:30:45Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T03:37:12Z", + "git_url": "git://github.com/Irfann1/challenge-week-3.git", + "ssh_url": "git@github.com:Irfann1/challenge-week-3.git", + "clone_url": "https://github.com/Irfann1/challenge-week-3.git", + "svn_url": "https://github.com/Irfann1/challenge-week-3", + "homepage": null, + "size": 4589, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 22, + "mirror_url": null, + "open_issues_count": 15, + "forks": 22, + "open_issues": 15, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/37" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/37" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/37" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/37/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/37/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/37/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/fa5d532303d8b3d2d37ce144d6872320987a90aa" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 13, + "additions": 39, + "deletions": 38, + "changed_files": 23 + } + }, + "public": true, + "created_at": "2014-09-15T03:37:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287646143", + "type": "PullRequestEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 15, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/15", + "id": 21212213, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/15", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/15.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/15.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/15", + "number": 15, + "state": "open", + "locked": false, + "title": "michael-fyk-make-a", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T03:07:04Z", + "updated_at": "2014-09-15T03:07:04Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/15/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/15/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/15/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/c44870e9ffcb811fae43ad1cbf5aeab4a26e64dc", + "head": { + "label": "thefyk:master", + "ref": "master", + "sha": "c44870e9ffcb811fae43ad1cbf5aeab4a26e64dc", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24039870, + "name": "project-1-make-a", + "full_name": "thefyk/project-1-make-a", + "owner": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/thefyk/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/thefyk/project-1-make-a", + "forks_url": "https://api.github.com/repos/thefyk/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/thefyk/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/thefyk/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/thefyk/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/thefyk/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/thefyk/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/thefyk/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/thefyk/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/thefyk/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/thefyk/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/thefyk/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/thefyk/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/thefyk/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/thefyk/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/thefyk/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/thefyk/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/thefyk/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/thefyk/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/thefyk/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/thefyk/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/thefyk/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/thefyk/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/thefyk/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/thefyk/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/thefyk/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/thefyk/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/thefyk/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/thefyk/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/thefyk/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/thefyk/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T02:29:12Z", + "updated_at": "2014-09-15T02:40:25Z", + "pushed_at": "2014-09-15T03:06:19Z", + "git_url": "git://github.com/thefyk/project-1-make-a.git", + "ssh_url": "git@github.com:thefyk/project-1-make-a.git", + "clone_url": "https://github.com/thefyk/project-1-make-a.git", + "svn_url": "https://github.com/thefyk/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 14, + "mirror_url": null, + "open_issues_count": 11, + "forks": 14, + "open_issues": 11, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/15" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/15" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/15" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/15/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/15/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/15/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/c44870e9ffcb811fae43ad1cbf5aeab4a26e64dc" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 30, + "deletions": 23, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2014-09-15T03:07:05Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287643274", + "type": "ForkEvent", + "actor": { + "id": 4582018, + "login": "develra", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24040767, + "name": "challenge-week-3", + "full_name": "develra/challenge-week-3", + "owner": { + "login": "develra", + "id": 4582018, + "avatar_url": "https://avatars.githubusercontent.com/u/4582018?v=2", + "gravatar_id": "4216285784b8751bc8add29e64e9e4e5", + "url": "https://api.github.com/users/develra", + "html_url": "https://github.com/develra", + "followers_url": "https://api.github.com/users/develra/followers", + "following_url": "https://api.github.com/users/develra/following{/other_user}", + "gists_url": "https://api.github.com/users/develra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/develra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/develra/subscriptions", + "organizations_url": "https://api.github.com/users/develra/orgs", + "repos_url": "https://api.github.com/users/develra/repos", + "events_url": "https://api.github.com/users/develra/events{/privacy}", + "received_events_url": "https://api.github.com/users/develra/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/develra/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/develra/challenge-week-3", + "forks_url": "https://api.github.com/repos/develra/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/develra/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/develra/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/develra/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/develra/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/develra/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/develra/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/develra/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/develra/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/develra/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/develra/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/develra/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/develra/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/develra/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/develra/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/develra/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/develra/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/develra/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/develra/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/develra/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/develra/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/develra/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/develra/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/develra/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/develra/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/develra/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/develra/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/develra/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/develra/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/develra/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/develra/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/develra/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/develra/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/develra/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/develra/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T03:03:08Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/develra/challenge-week-3.git", + "ssh_url": "git@github.com:develra/challenge-week-3.git", + "clone_url": "https://github.com/develra/challenge-week-3.git", + "svn_url": "https://github.com/develra/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T03:03:09Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287637615", + "type": "PullRequestEvent", + "actor": { + "id": 3361094, + "login": "masi8397", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 36, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/36", + "id": 21212062, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/36", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/36.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/36.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/36", + "number": 36, + "state": "open", + "locked": false, + "title": "Marc SimpsonChallenge3Update", + "user": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T02:54:50Z", + "updated_at": "2014-09-15T02:54:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/36/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/36/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/36/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/fcd12666347b8e98e7e0c780f99a99f7d4610af3", + "head": { + "label": "masi8397:master", + "ref": "master", + "sha": "fcd12666347b8e98e7e0c780f99a99f7d4610af3", + "user": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24038316, + "name": "challenge-week-3", + "full_name": "masi8397/challenge-week-3", + "owner": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/masi8397/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/masi8397/challenge-week-3", + "forks_url": "https://api.github.com/repos/masi8397/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/masi8397/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/masi8397/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/masi8397/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/masi8397/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/masi8397/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/masi8397/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/masi8397/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/masi8397/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/masi8397/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/masi8397/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/masi8397/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/masi8397/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/masi8397/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/masi8397/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/masi8397/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/masi8397/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/masi8397/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/masi8397/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/masi8397/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/masi8397/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/masi8397/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/masi8397/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/masi8397/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/masi8397/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/masi8397/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/masi8397/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/masi8397/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/masi8397/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/masi8397/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T01:25:08Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T02:52:58Z", + "git_url": "git://github.com/masi8397/challenge-week-3.git", + "ssh_url": "git@github.com:masi8397/challenge-week-3.git", + "clone_url": "https://github.com/masi8397/challenge-week-3.git", + "svn_url": "https://github.com/masi8397/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "open_issues_count": 14, + "forks": 21, + "open_issues": 14, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/36" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/36" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/36" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/36/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/36/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/36/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/fcd12666347b8e98e7e0c780f99a99f7d4610af3" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 4, + "additions": 40, + "deletions": 37, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-15T02:54:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287637386", + "type": "IssueCommentEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 7, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-15T02:54:24Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55548943", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16#issuecomment-55548943", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 55548943, + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-15T02:54:24Z", + "updated_at": "2014-09-15T02:54:24Z", + "body": "Try this command: `date | md5`\r\n\r\nThat takes the current date and hashes it with md5 (which is 32 chars)." + } + }, + "public": true, + "created_at": "2014-09-15T02:54:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287628521", + "type": "PullRequestEvent", + "actor": { + "id": 8551273, + "login": "adrian-chen", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 35, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/35", + "id": 21211883, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/35", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/35.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/35.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/35", + "number": 35, + "state": "open", + "locked": false, + "title": "Adrian Chen Final Week 3", + "user": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T02:40:49Z", + "updated_at": "2014-09-15T02:40:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/35/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/35/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/35/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/9545d4abf4e6075439c637ee4ad2b11e6e12b73a", + "head": { + "label": "adrian-chen:master", + "ref": "master", + "sha": "9545d4abf4e6075439c637ee4ad2b11e6e12b73a", + "user": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24031926, + "name": "challenge-week-3", + "full_name": "adrian-chen/challenge-week-3", + "owner": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/adrian-chen/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/adrian-chen/challenge-week-3", + "forks_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T20:01:04Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T02:40:05Z", + "git_url": "git://github.com/adrian-chen/challenge-week-3.git", + "ssh_url": "git@github.com:adrian-chen/challenge-week-3.git", + "clone_url": "https://github.com/adrian-chen/challenge-week-3.git", + "svn_url": "https://github.com/adrian-chen/challenge-week-3", + "homepage": null, + "size": 98, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "open_issues_count": 13, + "forks": 21, + "open_issues": 13, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/35" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/35" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/35" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/35/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/35/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/35/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/9545d4abf4e6075439c637ee4ad2b11e6e12b73a" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 4, + "additions": 40, + "deletions": 39, + "changed_files": 25 + } + }, + "public": true, + "created_at": "2014-09-15T02:40:49Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287623567", + "type": "IssuesEvent", + "actor": { + "id": 1976777, + "login": "JoshFerge", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/34", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/34/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/34/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/34/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/34", + "id": 42737624, + "number": 34, + "title": "This is Josh Ferge", + "user": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T02:33:01Z", + "updated_at": "2014-09-15T02:33:01Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-15T02:33:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287621029", + "type": "ForkEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24039870, + "name": "project-1-make-a", + "full_name": "thefyk/project-1-make-a", + "owner": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/thefyk/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/thefyk/project-1-make-a", + "forks_url": "https://api.github.com/repos/thefyk/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/thefyk/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/thefyk/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/thefyk/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/thefyk/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/thefyk/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/thefyk/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/thefyk/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/thefyk/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/thefyk/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/thefyk/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/thefyk/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/thefyk/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/thefyk/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/thefyk/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/thefyk/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/thefyk/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/thefyk/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/thefyk/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/thefyk/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/thefyk/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/thefyk/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/thefyk/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/thefyk/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/thefyk/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/thefyk/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/thefyk/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/thefyk/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/thefyk/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/thefyk/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/thefyk/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T02:29:12Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/thefyk/project-1-make-a.git", + "ssh_url": "git@github.com:thefyk/project-1-make-a.git", + "clone_url": "https://github.com/thefyk/project-1-make-a.git", + "svn_url": "https://github.com/thefyk/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T02:29:12Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287615812", + "type": "PullRequestEvent", + "actor": { + "id": 8551273, + "login": "adrian-chen", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 14, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/14", + "id": 21211624, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/14", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/14.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/14.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/14", + "number": 14, + "state": "open", + "locked": false, + "title": "Adrian's project", + "user": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T02:21:39Z", + "updated_at": "2014-09-15T02:21:39Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/14/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/14/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/14/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/f41c4d25990648bb43bb1bf228de4b4ceb52f354", + "head": { + "label": "adrian-chen:master", + "ref": "master", + "sha": "f41c4d25990648bb43bb1bf228de4b4ceb52f354", + "user": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24031822, + "name": "project-1-make-a", + "full_name": "adrian-chen/project-1-make-a", + "owner": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/adrian-chen/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/adrian-chen/project-1-make-a", + "forks_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/releases{/id}", + "created_at": "2014-09-14T19:57:16Z", + "updated_at": "2014-09-14T20:08:04Z", + "pushed_at": "2014-09-15T02:21:09Z", + "git_url": "git://github.com/adrian-chen/project-1-make-a.git", + "ssh_url": "git@github.com:adrian-chen/project-1-make-a.git", + "clone_url": "https://github.com/adrian-chen/project-1-make-a.git", + "svn_url": "https://github.com/adrian-chen/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "open_issues_count": 10, + "forks": 13, + "open_issues": 10, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/14" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/14" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/14" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/14/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/14/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/14/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/f41c4d25990648bb43bb1bf228de4b4ceb52f354" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 6, + "additions": 315823, + "deletions": 11, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2014-09-15T02:21:39Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287584495", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 6, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-15T01:39:58Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55546595", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16#issuecomment-55546595", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 55546595, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-15T01:39:58Z", + "updated_at": "2014-09-15T01:39:58Z", + "body": "I highly recommend going this route for the Twitter API: https://dev.twitter.com/oauth/application-only\r\n\r\nI'm not sure what the tutorial said, but I'm unsure why you're using nonce for an application-only access of the API on only your user." + } + }, + "public": true, + "created_at": "2014-09-15T01:39:58Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287582125", + "type": "PullRequestEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 13, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/13", + "id": 21211031, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/13", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/13.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/13.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/13", + "number": 13, + "state": "open", + "locked": false, + "title": "done with make", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T01:36:32Z", + "updated_at": "2014-09-15T01:36:32Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "99e8d1227d8df4857bb065f90f8a74d8627c4aed", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/13/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/13/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/13/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/b4a5d4857f77c4ff3c3eeab3fed628779832975c", + "head": { + "label": "jakecharland:master", + "ref": "master", + "sha": "b4a5d4857f77c4ff3c3eeab3fed628779832975c", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24038388, + "name": "project-1-make-a", + "full_name": "jakecharland/project-1-make-a", + "owner": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakecharland/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakecharland/project-1-make-a", + "forks_url": "https://api.github.com/repos/jakecharland/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/jakecharland/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakecharland/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakecharland/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/jakecharland/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/jakecharland/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakecharland/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/jakecharland/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakecharland/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakecharland/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakecharland/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakecharland/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/jakecharland/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/jakecharland/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/jakecharland/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/jakecharland/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/jakecharland/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakecharland/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakecharland/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakecharland/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakecharland/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakecharland/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/jakecharland/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakecharland/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/jakecharland/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakecharland/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakecharland/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakecharland/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakecharland/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/jakecharland/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T01:28:29Z", + "updated_at": "2014-09-15T01:30:38Z", + "pushed_at": "2014-09-15T01:36:10Z", + "git_url": "git://github.com/jakecharland/project-1-make-a.git", + "ssh_url": "git@github.com:jakecharland/project-1-make-a.git", + "clone_url": "https://github.com/jakecharland/project-1-make-a.git", + "svn_url": "https://github.com/jakecharland/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "open_issues_count": 9, + "forks": 13, + "open_issues": 9, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/13" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/13" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/13" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/13/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/13/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/13/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/b4a5d4857f77c4ff3c3eeab3fed628779832975c" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 56, + "deletions": 11, + "changed_files": 3 + } + }, + "public": true, + "created_at": "2014-09-15T01:36:33Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287580976", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/22", + "id": 42730696, + "number": 22, + "title": "Faulty data Collection", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-14T21:18:21Z", + "updated_at": "2014-09-15T01:34:53Z", + "closed_at": null, + "body": "So I've been trying to collect 4 hour samples over the last few days, and for the first set it worked fine, but I just now noticed that my latest collections are not making any sense. When I run my code locally (checking it using the Arduino software on my computer) it works just fine, but then when I test it using the battery, I get ridiculous values. First off, it no longer collects time correctly. It has also randomly reset itself, and the latest problem is that it linearly goes up in sound values over time, all the way into the 400's (which is incredibly loud, so clearly not correct, at least for my environment). I have tried changing batteries, hard resetting the Arduino, re-creating my code in a new file and uploading it, etc. Nothing seems to be working. Any idea what the problem might be? It's clearly something to do with the microSD, yeah?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55546457", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/22#issuecomment-55546457", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22", + "id": 55546457, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-15T01:34:53Z", + "updated_at": "2014-09-15T01:34:53Z", + "body": "My guess would be that it's because the battery is running the arduino at a higher voltage. I think the regulator only brings it down to 5V. You may want to take the silent variable out of the code and run some test trials with the 9V to see what the readings look like.\r\n\r\nRemember, the microphone is outputting at a ratio proportional to the input so when you change the input, you may change the output.\r\n\r\nIf there's still issues, we can talk tomorrow.\r\n\r\nBest,\r\nMike" + } + }, + "public": true, + "created_at": "2014-09-15T01:34:54Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287576892", + "type": "ForkEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24038388, + "name": "project-1-make-a", + "full_name": "jakecharland/project-1-make-a", + "owner": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakecharland/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakecharland/project-1-make-a", + "forks_url": "https://api.github.com/repos/jakecharland/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/jakecharland/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakecharland/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakecharland/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/jakecharland/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/jakecharland/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakecharland/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/jakecharland/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakecharland/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakecharland/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakecharland/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakecharland/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/jakecharland/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/jakecharland/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/jakecharland/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/jakecharland/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/jakecharland/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakecharland/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakecharland/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakecharland/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakecharland/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakecharland/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakecharland/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/jakecharland/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakecharland/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/jakecharland/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakecharland/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakecharland/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakecharland/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakecharland/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/jakecharland/project-1-make-a/releases{/id}", + "created_at": "2014-09-15T01:28:29Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/jakecharland/project-1-make-a.git", + "ssh_url": "git@github.com:jakecharland/project-1-make-a.git", + "clone_url": "https://github.com/jakecharland/project-1-make-a.git", + "svn_url": "https://github.com/jakecharland/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T01:28:30Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287576447", + "type": "PullRequestEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 33, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/33", + "id": 21210945, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/33", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/33.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/33.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/33", + "number": 33, + "state": "open", + "locked": false, + "title": "done with challenge", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T01:27:41Z", + "updated_at": "2014-09-15T01:27:41Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "239498907f48d888e4025ceda7ec66149e5f1272", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/33/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/33/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/33/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/4b3bdc03cfce64b9150c7b1e823afd9eaf6bbe8a", + "head": { + "label": "jakecharland:master", + "ref": "master", + "sha": "4b3bdc03cfce64b9150c7b1e823afd9eaf6bbe8a", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24026916, + "name": "challenge-week-3", + "full_name": "jakecharland/challenge-week-3", + "owner": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakecharland/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakecharland/challenge-week-3", + "forks_url": "https://api.github.com/repos/jakecharland/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/jakecharland/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakecharland/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakecharland/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/jakecharland/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/jakecharland/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakecharland/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/jakecharland/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakecharland/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakecharland/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakecharland/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakecharland/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/jakecharland/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/jakecharland/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/jakecharland/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/jakecharland/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/jakecharland/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakecharland/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakecharland/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakecharland/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakecharland/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakecharland/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/jakecharland/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakecharland/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/jakecharland/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakecharland/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakecharland/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakecharland/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakecharland/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/jakecharland/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T16:27:58Z", + "updated_at": "2014-09-15T01:23:50Z", + "pushed_at": "2014-09-15T01:23:49Z", + "git_url": "git://github.com/jakecharland/challenge-week-3.git", + "ssh_url": "git@github.com:jakecharland/challenge-week-3.git", + "clone_url": "https://github.com/jakecharland/challenge-week-3.git", + "svn_url": "https://github.com/jakecharland/challenge-week-3", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 21, + "mirror_url": null, + "open_issues_count": 11, + "forks": 21, + "open_issues": 11, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/33" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/33" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/33" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/33/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/33/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/33/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/4b3bdc03cfce64b9150c7b1e823afd9eaf6bbe8a" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 97767, + "deletions": 27, + "changed_files": 1930 + } + }, + "public": true, + "created_at": "2014-09-15T01:27:42Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287576231", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/32", + "id": 42735515, + "number": 32, + "title": "So many issues.", + "user": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T01:07:50Z", + "updated_at": "2014-09-15T01:27:19Z", + "closed_at": "2014-09-15T01:27:19Z", + "body": "Wow, we have a lot of issues." + } + }, + "public": true, + "created_at": "2014-09-15T01:27:20Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287575923", + "type": "ForkEvent", + "actor": { + "id": 5599320, + "login": "jakewhite8", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24038351, + "name": "challenge-week-3", + "full_name": "jakewhite8/challenge-week-3", + "owner": { + "login": "jakewhite8", + "id": 5599320, + "avatar_url": "https://avatars.githubusercontent.com/u/5599320?v=2", + "gravatar_id": "98440b31fd7dba091a4ca5328d506574", + "url": "https://api.github.com/users/jakewhite8", + "html_url": "https://github.com/jakewhite8", + "followers_url": "https://api.github.com/users/jakewhite8/followers", + "following_url": "https://api.github.com/users/jakewhite8/following{/other_user}", + "gists_url": "https://api.github.com/users/jakewhite8/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakewhite8/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakewhite8/subscriptions", + "organizations_url": "https://api.github.com/users/jakewhite8/orgs", + "repos_url": "https://api.github.com/users/jakewhite8/repos", + "events_url": "https://api.github.com/users/jakewhite8/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakewhite8/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakewhite8/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakewhite8/challenge-week-3", + "forks_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/jakewhite8/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T01:26:54Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/jakewhite8/challenge-week-3.git", + "ssh_url": "git@github.com:jakewhite8/challenge-week-3.git", + "clone_url": "https://github.com/jakewhite8/challenge-week-3.git", + "svn_url": "https://github.com/jakewhite8/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T01:26:55Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287574836", + "type": "ForkEvent", + "actor": { + "id": 3361094, + "login": "masi8397", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24038316, + "name": "challenge-week-3", + "full_name": "masi8397/challenge-week-3", + "owner": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/masi8397/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/masi8397/challenge-week-3", + "forks_url": "https://api.github.com/repos/masi8397/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/masi8397/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/masi8397/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/masi8397/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/masi8397/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/masi8397/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/masi8397/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/masi8397/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/masi8397/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/masi8397/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/masi8397/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/masi8397/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/masi8397/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/masi8397/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/masi8397/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/masi8397/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/masi8397/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/masi8397/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/masi8397/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/masi8397/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/masi8397/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/masi8397/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/masi8397/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/masi8397/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/masi8397/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/masi8397/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/masi8397/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/masi8397/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/masi8397/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/masi8397/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/masi8397/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T01:25:08Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/masi8397/challenge-week-3.git", + "ssh_url": "git@github.com:masi8397/challenge-week-3.git", + "clone_url": "https://github.com/masi8397/challenge-week-3.git", + "svn_url": "https://github.com/masi8397/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T01:25:08Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287572355", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/1", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/1/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/1/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/1", + "id": 42301302, + "number": 1, + "title": "This is Tom Yeh", + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-09T12:37:02Z", + "updated_at": "2014-09-15T01:20:42Z", + "closed_at": "2014-09-15T01:20:42Z", + "body": "Test issue" + } + }, + "public": true, + "created_at": "2014-09-15T01:20:43Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287572284", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/5", + "id": 42525739, + "number": 5, + "title": "This is a test question", + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels/question", + "name": "question", + "color": "cc317c" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T13:50:28Z", + "updated_at": "2014-09-15T01:20:35Z", + "closed_at": "2014-09-15T01:20:35Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-15T01:20:35Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287572191", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/13", + "id": 42704747, + "number": 13, + "title": "This is Alex Tsankov", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-13T20:22:16Z", + "updated_at": "2014-09-15T01:20:23Z", + "closed_at": "2014-09-15T01:20:23Z", + "body": "I ate a piece of toast for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:20:23Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287572044", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/17", + "id": 42725355, + "number": 17, + "title": "This is Brian Newsom", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T17:15:24Z", + "updated_at": "2014-09-15T01:20:07Z", + "closed_at": "2014-09-15T01:20:07Z", + "body": "I ate nothing for breakfast today :(" + } + }, + "public": true, + "created_at": "2014-09-15T01:20:07Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571985", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/28", + "id": 42733723, + "number": 28, + "title": "This is Ian Ker-Seymer", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T23:37:38Z", + "updated_at": "2014-09-15T01:20:00Z", + "closed_at": "2014-09-15T01:20:00Z", + "body": "I ate success for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:20:00Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571925", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/25", + "id": 42732745, + "number": 25, + "title": "This is Irfan Nadiadi", + "user": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T22:47:01Z", + "updated_at": "2014-09-15T01:19:53Z", + "closed_at": "2014-09-15T01:19:53Z", + "body": "I ate a burrito for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:19:53Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571836", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/18", + "id": 42726604, + "number": 18, + "title": "This is Jake Charland", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T18:15:22Z", + "updated_at": "2014-09-15T01:19:44Z", + "closed_at": "2014-09-15T01:19:44Z", + "body": "I ate cereal for breakfast" + } + }, + "public": true, + "created_at": "2014-09-15T01:19:45Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571723", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/30", + "id": 42734952, + "number": 30, + "title": "This is Dawson", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T00:39:17Z", + "updated_at": "2014-09-15T01:19:28Z", + "closed_at": "2014-09-15T01:19:28Z", + "body": "I ate air for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:19:28Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571687", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/29", + "id": 42734671, + "number": 29, + "title": "This is Alexia", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T00:24:59Z", + "updated_at": "2014-09-15T01:19:23Z", + "closed_at": "2014-09-15T01:19:23Z", + "body": "I ate chicken and waffles for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:19:23Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571608", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/20", + "id": 42729039, + "number": 20, + "title": "This is Peyman", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T20:07:22Z", + "updated_at": "2014-09-15T01:19:13Z", + "closed_at": "2014-09-15T01:19:13Z", + "body": "I had eggs for breakfast. That's my issue :)" + } + }, + "public": true, + "created_at": "2014-09-15T01:19:13Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571425", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/11", + "id": 42690927, + "number": 11, + "title": "This is Michael Fyk", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-13T09:13:42Z", + "updated_at": "2014-09-15T01:18:54Z", + "closed_at": "2014-09-15T01:18:54Z", + "body": "I had coffee for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:18:54Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571265", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/2", + "id": 42479182, + "number": 2, + "title": "This is Justin McBride", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-11T01:05:28Z", + "updated_at": "2014-09-15T01:18:42Z", + "closed_at": "2014-09-15T01:18:42Z", + "body": "I ate cats for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:18:42Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287571106", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/3", + "id": 42494269, + "number": 3, + "title": "This is Niklas Fejes", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T06:49:10Z", + "updated_at": "2014-09-15T01:18:26Z", + "closed_at": "2014-09-15T01:18:26Z", + "body": "I ate splunk for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T01:18:26Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287565187", + "type": "IssuesEvent", + "actor": { + "id": 8551273, + "login": "adrian-chen", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/32/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/32", + "id": 42735515, + "number": 32, + "title": "So many issues.", + "user": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T01:07:50Z", + "updated_at": "2014-09-15T01:07:50Z", + "closed_at": null, + "body": "Wow, we have a lot of issues." + } + }, + "public": true, + "created_at": "2014-09-15T01:07:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287560152", + "type": "ForkEvent", + "actor": { + "id": 1976777, + "login": "JoshFerge", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24037738, + "name": "challenge-week-3", + "full_name": "JoshFerge/challenge-week-3", + "owner": { + "login": "JoshFerge", + "id": 1976777, + "avatar_url": "https://avatars.githubusercontent.com/u/1976777?v=2", + "gravatar_id": "9af6570e314389a38b8b196bfbffddd3", + "url": "https://api.github.com/users/JoshFerge", + "html_url": "https://github.com/JoshFerge", + "followers_url": "https://api.github.com/users/JoshFerge/followers", + "following_url": "https://api.github.com/users/JoshFerge/following{/other_user}", + "gists_url": "https://api.github.com/users/JoshFerge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoshFerge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoshFerge/subscriptions", + "organizations_url": "https://api.github.com/users/JoshFerge/orgs", + "repos_url": "https://api.github.com/users/JoshFerge/repos", + "events_url": "https://api.github.com/users/JoshFerge/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoshFerge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/JoshFerge/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/JoshFerge/challenge-week-3", + "forks_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/JoshFerge/challenge-week-3/releases{/id}", + "created_at": "2014-09-15T00:58:56Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/JoshFerge/challenge-week-3.git", + "ssh_url": "git@github.com:JoshFerge/challenge-week-3.git", + "clone_url": "https://github.com/JoshFerge/challenge-week-3.git", + "svn_url": "https://github.com/JoshFerge/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-15T00:58:57Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287555412", + "type": "PullRequestEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 31, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/31", + "id": 21210537, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/31", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/31.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/31.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/31", + "number": 31, + "state": "open", + "locked": false, + "title": "Update README.md", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-15T00:50:39Z", + "updated_at": "2014-09-15T00:50:39Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/31/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/31/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/31/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/ecef2bff431fad4739962c46ea7e941d4510714f", + "head": { + "label": "thefyk:master", + "ref": "master", + "sha": "ecef2bff431fad4739962c46ea7e941d4510714f", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24034185, + "name": "challenge-week-3", + "full_name": "thefyk/challenge-week-3", + "owner": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/thefyk/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/thefyk/challenge-week-3", + "forks_url": "https://api.github.com/repos/thefyk/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/thefyk/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/thefyk/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/thefyk/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/thefyk/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/thefyk/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/thefyk/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/thefyk/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/thefyk/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/thefyk/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/thefyk/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/thefyk/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/thefyk/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/thefyk/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/thefyk/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/thefyk/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/thefyk/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/thefyk/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/thefyk/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/thefyk/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/thefyk/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/thefyk/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/thefyk/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/thefyk/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/thefyk/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/thefyk/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/thefyk/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/thefyk/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/thefyk/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/thefyk/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T21:44:14Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-15T00:50:30Z", + "git_url": "git://github.com/thefyk/challenge-week-3.git", + "ssh_url": "git@github.com:thefyk/challenge-week-3.git", + "clone_url": "https://github.com/thefyk/challenge-week-3.git", + "svn_url": "https://github.com/thefyk/challenge-week-3", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "open_issues_count": 23, + "forks": 18, + "open_issues": 23, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/31" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/31" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/31" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/31/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/31/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/31/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/ecef2bff431fad4739962c46ea7e941d4510714f" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 41, + "deletions": 37, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-15T00:50:39Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287549310", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/30/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/30", + "id": 42734952, + "number": 30, + "title": "This is Dawson", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T00:39:17Z", + "updated_at": "2014-09-15T00:39:17Z", + "closed_at": null, + "body": "I ate air for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T00:39:17Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287541727", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/29/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/29", + "id": 42734671, + "number": 29, + "title": "This is Alexia", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-15T00:24:59Z", + "updated_at": "2014-09-15T00:24:59Z", + "closed_at": null, + "body": "I ate chicken and waffles for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-15T00:24:59Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287517369", + "type": "IssuesEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/28/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/28", + "id": 42733723, + "number": 28, + "title": "This is Ian Ker-Seymer", + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T23:37:38Z", + "updated_at": "2014-09-14T23:37:38Z", + "closed_at": null, + "body": "I ate success for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-14T23:37:38Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287512385", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/27", + "id": 42733066, + "number": 27, + "title": "Can't see localhost:8080?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-14T23:01:29Z", + "updated_at": "2014-09-14T23:28:04Z", + "closed_at": "2014-09-14T23:28:04Z", + "body": "I've been trying to run my_web_server.js and am finding that it doesn't display anything on my browser. Postman also says that it couldn't get a response. Here's my code:\r\n\r\n```\r\nvar http = require('http');\r\n\r\nhttp.createServer(function (req, res) {\r\n res.writeHead(200, {'Content-Type': 'text/plain'});\r\n res.end('Hello Alexia\\n');\r\n}).listen(8080);\r\n\r\nconsole.log('Server running on port 8080.');\r\n```\r\n\r\nAnd here's the command and output:\r\n\r\n```\r\n$ node my_web_server.js \r\nServer running on port 8080.\r\n```\r\n\r\nI am able to ping localhost and the output seems fine, which is why I'm confused. Any ideas? It may be a mac issue..." + } + }, + "public": true, + "created_at": "2014-09-14T23:28:04Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287512329", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/27", + "id": 42733066, + "number": 27, + "title": "Can't see localhost:8080?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-14T23:01:29Z", + "updated_at": "2014-09-14T23:27:57Z", + "closed_at": null, + "body": "I've been trying to run my_web_server.js and am finding that it doesn't display anything on my browser. Postman also says that it couldn't get a response. Here's my code:\r\n\r\n```\r\nvar http = require('http');\r\n\r\nhttp.createServer(function (req, res) {\r\n res.writeHead(200, {'Content-Type': 'text/plain'});\r\n res.end('Hello Alexia\\n');\r\n}).listen(8080);\r\n\r\nconsole.log('Server running on port 8080.');\r\n```\r\n\r\nAnd here's the command and output:\r\n\r\n```\r\n$ node my_web_server.js \r\nServer running on port 8080.\r\n```\r\n\r\nI am able to ping localhost and the output seems fine, which is why I'm confused. Any ideas? It may be a mac issue..." + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55543133", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/27#issuecomment-55543133", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27", + "id": 55543133, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T23:27:57Z", + "updated_at": "2014-09-14T23:27:57Z", + "body": "Turns out the VPN software Cisco Anyconnect that may be provided by the university silently consumes port 8080, even when it's not running. It's a known issue, but other people's workarounds did not work for me, so I'm just using 8081.\r\n\r\nHere's one person's [analysis on StackExchange](http://apple.stackexchange.com/questions/66158/unkown-process-listening-at-port-8080) who knows much more about networking than I.\r\n\r\nJust thought I'd share in case anyone else uses this software." + } + }, + "public": true, + "created_at": "2014-09-14T23:27:58Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287499112", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/27/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/27", + "id": 42733066, + "number": 27, + "title": "Can't see localhost:8080?", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T23:01:29Z", + "updated_at": "2014-09-14T23:01:29Z", + "closed_at": null, + "body": "I've been trying to run my_web_server.js and am finding that it doesn't display anything on my browser. Postman also says that it couldn't get a response. Here's my code:\r\n\r\n'''\r\nvar http = require('http');\r\n\r\nhttp.createServer(function (req, res) {\r\n res.writeHead(200, {'Content-Type': 'text/plain'});\r\n res.end('Hello Alexia\\n');\r\n}).listen(8080);\r\n\r\nconsole.log('Server running on port 8080.');\r\n'''\r\n\r\nAnd here's the command and output:\r\n\r\n'''\r\n$ node my_web_server.js \r\nServer running on port 8080.\r\n'''\r\n\r\nI am able to ping localhost and the output seems fine, which is why I'm confused. Any ideas? It may be a mac issue..." + } + }, + "public": true, + "created_at": "2014-09-14T23:01:29Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287496710", + "type": "PullRequestEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 26, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/26", + "id": 21209488, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/26", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/26.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/26.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/26", + "number": 26, + "state": "open", + "locked": false, + "title": "Week 3 Challenge - Peyman Mortazavi", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-14T22:57:11Z", + "updated_at": "2014-09-14T22:57:11Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/26/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/26/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/26/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/bdbe88fe1a0662fe97e086259b4de7e30ed7a515", + "head": { + "label": "peymanmortazavi:master", + "ref": "master", + "sha": "bdbe88fe1a0662fe97e086259b4de7e30ed7a515", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 24032115, + "name": "challenge-week-3", + "full_name": "peymanmortazavi/challenge-week-3", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3", + "forks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T20:08:31Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-14T22:56:44Z", + "git_url": "git://github.com/peymanmortazavi/challenge-week-3.git", + "ssh_url": "git@github.com:peymanmortazavi/challenge-week-3.git", + "clone_url": "https://github.com/peymanmortazavi/challenge-week-3.git", + "svn_url": "https://github.com/peymanmortazavi/challenge-week-3", + "homepage": null, + "size": 95, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 25504, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "open_issues_count": 19, + "forks": 18, + "open_issues": 19, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/26" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/26" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/26" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/26/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/26/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/26/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/bdbe88fe1a0662fe97e086259b4de7e30ed7a515" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 6, + "additions": 39, + "deletions": 39, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-14T22:57:11Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287491392", + "type": "IssuesEvent", + "actor": { + "id": 7736082, + "login": "Irfann1", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/25/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/25", + "id": 42732745, + "number": 25, + "title": "This is Irfan Nadiadi", + "user": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T22:47:01Z", + "updated_at": "2014-09-14T22:47:01Z", + "closed_at": null, + "body": "I ate a burrito for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-14T22:47:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287487985", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 42729530, + "number": 21, + "title": "npm express install error", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-14T20:28:51Z", + "updated_at": "2014-09-14T22:40:13Z", + "closed_at": "2014-09-14T22:40:13Z", + "body": "Having tons of npm errors in my 12.04 Ubuntu distro. After proceeding normally through the first part of the node.js tutorial I have arrived upon the express install portion. After typing \"npm install express\" I get installation errors. \r\n\r\nReceived several warnings such as \"UNKNOWN\" and \"Unsupported\". Performed an npm uninstall and reinstall to troubleshoot with no luck. \r\n\r\n**Getting very frustrated with this assignment in total. Poured in 4 hours so far, attempting to learn all I can and it is feeling like I won't finish by tonight. I would love to see a different teaching approach for these weekend assignments and some assignment change or exception for this one with all of the software issues I have been tripping over.**\r\n\r\nAny help with this npm issue would be greatly appreciated. \r\n\r\n![image](http://i.imgur.com/iOcgLWB.png)" + } + }, + "public": true, + "created_at": "2014-09-14T22:40:13Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287487984", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 42729530, + "number": 21, + "title": "npm express install error", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-14T20:28:51Z", + "updated_at": "2014-09-14T22:40:13Z", + "closed_at": "2014-09-14T22:40:13Z", + "body": "Having tons of npm errors in my 12.04 Ubuntu distro. After proceeding normally through the first part of the node.js tutorial I have arrived upon the express install portion. After typing \"npm install express\" I get installation errors. \r\n\r\nReceived several warnings such as \"UNKNOWN\" and \"Unsupported\". Performed an npm uninstall and reinstall to troubleshoot with no luck. \r\n\r\n**Getting very frustrated with this assignment in total. Poured in 4 hours so far, attempting to learn all I can and it is feeling like I won't finish by tonight. I would love to see a different teaching approach for these weekend assignments and some assignment change or exception for this one with all of the software issues I have been tripping over.**\r\n\r\nAny help with this npm issue would be greatly appreciated. \r\n\r\n![image](http://i.imgur.com/iOcgLWB.png)" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55542025", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21#issuecomment-55542025", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 55542025, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T22:40:13Z", + "updated_at": "2014-09-14T22:40:13Z", + "body": "Props to @ianks, after over an hour of toggling and work homebrew did the trick. Off to the rest of the assignment...Cheers." + } + }, + "public": true, + "created_at": "2014-09-14T22:40:13Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287484755", + "type": "PullRequestEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 12, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/12", + "id": 21209245, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/12", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/12.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/12.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/12", + "number": 12, + "state": "open", + "locked": false, + "title": "Finished 1-a. I have some basic data.", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-14T22:33:58Z", + "updated_at": "2014-09-14T22:33:58Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/12/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/12/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/12/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/8e057bef95ee45e7747c977130f115e568e14084", + "head": { + "label": "antsankov:master", + "ref": "master", + "sha": "8e057bef95ee45e7747c977130f115e568e14084", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23642625, + "name": "project-1-make-a", + "full_name": "antsankov/project-1-make-a", + "owner": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/antsankov/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/antsankov/project-1-make-a", + "forks_url": "https://api.github.com/repos/antsankov/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/antsankov/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/antsankov/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/antsankov/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/antsankov/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/antsankov/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/antsankov/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/antsankov/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/antsankov/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/antsankov/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/antsankov/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/antsankov/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/antsankov/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/antsankov/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/antsankov/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/antsankov/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/antsankov/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/antsankov/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/antsankov/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/antsankov/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/antsankov/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/antsankov/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/antsankov/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/antsankov/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/antsankov/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/antsankov/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/antsankov/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/antsankov/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/antsankov/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/antsankov/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/antsankov/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/antsankov/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/antsankov/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/antsankov/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/antsankov/project-1-make-a/releases{/id}", + "created_at": "2014-09-04T00:27:49Z", + "updated_at": "2014-09-04T00:32:40Z", + "pushed_at": "2014-09-13T20:33:01Z", + "git_url": "git://github.com/antsankov/project-1-make-a.git", + "ssh_url": "git@github.com:antsankov/project-1-make-a.git", + "clone_url": "https://github.com/antsankov/project-1-make-a.git", + "svn_url": "https://github.com/antsankov/project-1-make-a", + "homepage": null, + "size": 95, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "open_issues_count": 8, + "forks": 12, + "open_issues": 8, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/12" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/12" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/12" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/12/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/12/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/12/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/8e057bef95ee45e7747c977130f115e568e14084" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 78144, + "deletions": 13, + "changed_files": 5 + } + }, + "public": true, + "created_at": "2014-09-14T22:34:00Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287483449", + "type": "PullRequestEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 24, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/24", + "id": 21209216, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/24", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/24.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/24.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/24", + "number": 24, + "state": "open", + "locked": false, + "title": "alex tsankov week 3 100/100", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-14T22:31:31Z", + "updated_at": "2014-09-14T22:31:31Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/24/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/24/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/24/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/6f977defbd5e89afb88dad0a27af350c29a098e7", + "head": { + "label": "antsankov:master", + "ref": "master", + "sha": "6f977defbd5e89afb88dad0a27af350c29a098e7", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23925676, + "name": "challenge-week-3-New-", + "full_name": "antsankov/challenge-week-3-New-", + "owner": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/antsankov/challenge-week-3-New-", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/antsankov/challenge-week-3-New-", + "forks_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/forks", + "keys_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/teams", + "hooks_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/hooks", + "issue_events_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/issues/events{/number}", + "events_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/events", + "assignees_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/assignees{/user}", + "branches_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/branches{/branch}", + "tags_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/tags", + "blobs_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/statuses/{sha}", + "languages_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/languages", + "stargazers_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/stargazers", + "contributors_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/contributors", + "subscribers_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/subscribers", + "subscription_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/subscription", + "commits_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/contents/{+path}", + "compare_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/merges", + "archive_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/downloads", + "issues_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/issues{/number}", + "pulls_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/pulls{/number}", + "milestones_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/milestones{/number}", + "notifications_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/labels{/name}", + "releases_url": "https://api.github.com/repos/antsankov/challenge-week-3-New-/releases{/id}", + "created_at": "2014-09-11T16:13:02Z", + "updated_at": "2014-09-11T16:13:36Z", + "pushed_at": "2014-09-14T22:31:03Z", + "git_url": "git://github.com/antsankov/challenge-week-3-New-.git", + "ssh_url": "git@github.com:antsankov/challenge-week-3-New-.git", + "clone_url": "https://github.com/antsankov/challenge-week-3-New-.git", + "svn_url": "https://github.com/antsankov/challenge-week-3-New-", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "open_issues_count": 18, + "forks": 18, + "open_issues": 18, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/24" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/24" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/24" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/24/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/24/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/24/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/6f977defbd5e89afb88dad0a27af350c29a098e7" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 8, + "additions": 41, + "deletions": 37, + "changed_files": 25 + } + }, + "public": true, + "created_at": "2014-09-14T22:31:31Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287474004", + "type": "PullRequestEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 11, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/11", + "id": 21209057, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/11", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/11.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/11.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/11", + "number": 11, + "state": "open", + "locked": false, + "title": "Brian Newsom Make 1-A", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-14T22:14:35Z", + "updated_at": "2014-09-14T22:14:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/11/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/11/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/11/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/194cdf00c29f9da682baf038ad60d8f1a366fc77", + "head": { + "label": "BrianNewsom:master", + "ref": "master", + "sha": "194cdf00c29f9da682baf038ad60d8f1a366fc77", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23605865, + "name": "project-1-make-a", + "full_name": "BrianNewsom/project-1-make-a", + "owner": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BrianNewsom/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/BrianNewsom/project-1-make-a", + "forks_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/BrianNewsom/project-1-make-a/releases{/id}", + "created_at": "2014-09-03T04:00:02Z", + "updated_at": "2014-09-14T22:07:14Z", + "pushed_at": "2014-09-14T22:12:51Z", + "git_url": "git://github.com/BrianNewsom/project-1-make-a.git", + "ssh_url": "git@github.com:BrianNewsom/project-1-make-a.git", + "clone_url": "https://github.com/BrianNewsom/project-1-make-a.git", + "svn_url": "https://github.com/BrianNewsom/project-1-make-a", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "open_issues_count": 7, + "forks": 12, + "open_issues": 7, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/11" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/11" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/11" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/11/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/11/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/11/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/194cdf00c29f9da682baf038ad60d8f1a366fc77" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 2, + "additions": 144, + "deletions": 11, + "changed_files": 5 + } + }, + "public": true, + "created_at": "2014-09-14T22:14:35Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287461988", + "type": "PullRequestEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 23, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/23", + "id": 21208854, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/23", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/23.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/23.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/23", + "number": 23, + "state": "open", + "locked": false, + "title": "Brian Newsom week 3", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-14T21:54:00Z", + "updated_at": "2014-09-14T21:54:00Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/23/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/23/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/23/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/294fe4458d8d34025714431b7448beb871d3d7ca", + "head": { + "label": "BrianNewsom:master", + "ref": "master", + "sha": "294fe4458d8d34025714431b7448beb871d3d7ca", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23907353, + "name": "challenge-week-3", + "full_name": "BrianNewsom/challenge-week-3", + "owner": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BrianNewsom/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/BrianNewsom/challenge-week-3", + "forks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/releases{/id}", + "created_at": "2014-09-11T06:45:04Z", + "updated_at": "2014-09-14T18:50:14Z", + "pushed_at": "2014-09-14T21:53:05Z", + "git_url": "git://github.com/BrianNewsom/challenge-week-3.git", + "ssh_url": "git@github.com:BrianNewsom/challenge-week-3.git", + "clone_url": "https://github.com/BrianNewsom/challenge-week-3.git", + "svn_url": "https://github.com/BrianNewsom/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 18, + "mirror_url": null, + "open_issues_count": 17, + "forks": 18, + "open_issues": 17, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/23" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/23" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/23" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/23/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/23/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/23/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/294fe4458d8d34025714431b7448beb871d3d7ca" + } + }, + "merged": false, + "mergeable": false, + "mergeable_state": "dirty", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 5, + "additions": 2809, + "deletions": 37, + "changed_files": 31 + } + }, + "public": true, + "created_at": "2014-09-14T21:54:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287461065", + "type": "ForkEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24034367, + "name": "challenge-week-3", + "full_name": "ianks/challenge-week-3", + "owner": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ianks/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/ianks/challenge-week-3", + "forks_url": "https://api.github.com/repos/ianks/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/ianks/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ianks/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ianks/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/ianks/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/ianks/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/ianks/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/ianks/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/ianks/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/ianks/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/ianks/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ianks/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ianks/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ianks/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ianks/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ianks/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/ianks/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/ianks/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/ianks/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/ianks/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/ianks/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ianks/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ianks/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ianks/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/ianks/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/ianks/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ianks/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/ianks/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ianks/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/ianks/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/ianks/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ianks/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ianks/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ianks/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/ianks/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T21:52:26Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/ianks/challenge-week-3.git", + "ssh_url": "git@github.com:ianks/challenge-week-3.git", + "clone_url": "https://github.com/ianks/challenge-week-3.git", + "svn_url": "https://github.com/ianks/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T21:52:26Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287456320", + "type": "ForkEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24034185, + "name": "challenge-week-3", + "full_name": "thefyk/challenge-week-3", + "owner": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/thefyk/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/thefyk/challenge-week-3", + "forks_url": "https://api.github.com/repos/thefyk/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/thefyk/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/thefyk/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/thefyk/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/thefyk/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/thefyk/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/thefyk/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/thefyk/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/thefyk/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/thefyk/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/thefyk/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/thefyk/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/thefyk/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/thefyk/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/thefyk/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/thefyk/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/thefyk/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/thefyk/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/thefyk/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/thefyk/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/thefyk/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/thefyk/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/thefyk/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/thefyk/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/thefyk/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/thefyk/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/thefyk/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/thefyk/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/thefyk/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/thefyk/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/thefyk/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T21:44:14Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/thefyk/challenge-week-3.git", + "ssh_url": "git@github.com:thefyk/challenge-week-3.git", + "clone_url": "https://github.com/thefyk/challenge-week-3.git", + "svn_url": "https://github.com/thefyk/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T21:44:14Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287449707", + "type": "IssueCommentEvent", + "actor": { + "id": 3303032, + "login": "ianks", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 42729530, + "number": 21, + "title": "npm express install error", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-14T20:28:51Z", + "updated_at": "2014-09-14T21:32:41Z", + "closed_at": null, + "body": "Having tons of npm errors in my 12.04 Ubuntu distro. After proceeding normally through the first part of the node.js tutorial I have arrived upon the express install portion. After typing \"npm install express\" I get installation errors. \r\n\r\nReceived several warnings such as \"UNKNOWN\" and \"Unsupported\". Performed an npm uninstall and reinstall to troubleshoot with no luck. \r\n\r\n**Getting very frustrated with this assignment in total. Poured in 4 hours so far, attempting to learn all I can and it is feeling like I won't finish by tonight. I would love to see a different teaching approach for these weekend assignments and some assignment change or exception for this one with all of the software issues I have been tripping over.**\r\n\r\nAny help with this npm issue would be greatly appreciated. \r\n\r\n![image](http://i.imgur.com/iOcgLWB.png)" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55540279", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21#issuecomment-55540279", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 55540279, + "user": { + "login": "ianks", + "id": 3303032, + "avatar_url": "https://avatars.githubusercontent.com/u/3303032?v=2", + "gravatar_id": "881dfa4c1ac507a08ac32e99fc0de976", + "url": "https://api.github.com/users/ianks", + "html_url": "https://github.com/ianks", + "followers_url": "https://api.github.com/users/ianks/followers", + "following_url": "https://api.github.com/users/ianks/following{/other_user}", + "gists_url": "https://api.github.com/users/ianks/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ianks/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ianks/subscriptions", + "organizations_url": "https://api.github.com/users/ianks/orgs", + "repos_url": "https://api.github.com/users/ianks/repos", + "events_url": "https://api.github.com/users/ianks/events{/privacy}", + "received_events_url": "https://api.github.com/users/ianks/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T21:32:41Z", + "updated_at": "2014-09-14T21:32:41Z", + "body": "As a heads up, the newest version of Node (0.30.11) is using a beta version of NPM 2.0. I would suggest using a version manager for Node, and attempting 0.30.10. This might not be the source of your paricular issue, but I figured I would throw that out there.\r\n\r\nHere is a link to Nodenv which I just PR'd to Homebrew: https://github.com/Homebrew/homebrew/pull/32193/files\r\n\r\nIf you want to use nodenv:\r\n 1. Install Homebrew:\r\n`ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"`\r\n\r\n 2. Install nodenv (make sure to read output of script and add correct env variables to your .(zsh | bash)rc file:\r\n`brew install https://raw.githubusercontent.com/ianks/homebrew/master/Library/Formula/nodenv.rb`\r\n \r\n 3. Install node-build\r\n`git clone git://github.com/OiNutter/node-build.git ~/.nodenv/plugins/node-build`\r\n\r\n 4. Install node\r\n`nodenv install 0.30.10`\r\n\r\n\r\n\r\n\r\n\r\n\r\n" + } + }, + "public": true, + "created_at": "2014-09-14T21:32:42Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287448050", + "type": "IssueCommentEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/22", + "id": 42730696, + "number": 22, + "title": "Faulty data Collection", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-14T21:18:21Z", + "updated_at": "2014-09-14T21:29:57Z", + "closed_at": null, + "body": "So I've been trying to collect 4 hour samples over the last few days, and for the first set it worked fine, but I just now noticed that my latest collections are not making any sense. When I run my code locally (checking it using the Arduino software on my computer) it works just fine, but then when I test it using the battery, I get ridiculous values. First off, it no longer collects time correctly. It has also randomly reset itself, and the latest problem is that it linearly goes up in sound values over time, all the way into the 400's (which is incredibly loud, so clearly not correct, at least for my environment). I have tried changing batteries, hard resetting the Arduino, re-creating my code in a new file and uploading it, etc. Nothing seems to be working. Any idea what the problem might be? It's clearly something to do with the microSD, yeah?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55540226", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/22#issuecomment-55540226", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22", + "id": 55540226, + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T21:29:57Z", + "updated_at": "2014-09-14T21:29:57Z", + "body": "I suppose the cool part out of this mess is that I actually have the data for when it started to break, which was ~30 minutes after 8pm on Saturday night ha." + } + }, + "public": true, + "created_at": "2014-09-14T21:29:57Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287444571", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/19", + "id": 42728287, + "number": 19, + "title": "Authentication Issues", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-14T19:34:10Z", + "updated_at": "2014-09-14T21:24:05Z", + "closed_at": "2014-09-14T21:23:31Z", + "body": "Like some other individuals, I'm having problems with authentication. I have replayed the tutorial multiple times to ensure that I followed the correct steps.\r\n\r\nIt may have to do with the nonce, but I doubt it. This is the only [Twitter Community forum](https://twittercommunity.com/t/how-to-generate-an-oauth-nonce/1307) that I could find on the topic and the nonce I used was composed of 32 alpha-numeric characters like it sounds like it should be.\r\n\r\nI have had a Twitter account since 2012ish and just downloaded Chrome/Postman today for the project.\r\n\r\nThanks,\r\nAlexia" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55540083", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/19#issuecomment-55540083", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19", + "id": 55540083, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T21:24:05Z", + "updated_at": "2014-09-14T21:24:05Z", + "body": "Fixed, per Austin Wood's suggestion to refresh the page after adding an updated nonce." + } + }, + "public": true, + "created_at": "2014-09-14T21:24:05Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287444239", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/19", + "id": 42728287, + "number": 19, + "title": "Authentication Issues", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T19:34:10Z", + "updated_at": "2014-09-14T21:23:31Z", + "closed_at": "2014-09-14T21:23:31Z", + "body": "Like some other individuals, I'm having problems with authentication. I have replayed the tutorial multiple times to ensure that I followed the correct steps.\r\n\r\nIt may have to do with the nonce, but I doubt it. This is the only [Twitter Community forum](https://twittercommunity.com/t/how-to-generate-an-oauth-nonce/1307) that I could find on the topic and the nonce I used was composed of 32 alpha-numeric characters like it sounds like it should be.\r\n\r\nI have had a Twitter account since 2012ish and just downloaded Chrome/Postman today for the project.\r\n\r\nThanks,\r\nAlexia" + } + }, + "public": true, + "created_at": "2014-09-14T21:23:31Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287443429", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 5, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-14T21:22:11Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55540030", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16#issuecomment-55540030", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 55540030, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T21:22:11Z", + "updated_at": "2014-09-14T21:22:11Z", + "body": "Thanks Austin!! That fixed the problem. When I refreshed before, I though all my data disappeared, but it turns out it just changed the view.\r\n\r\nI'm glad that it's working... I'll close the issue I opened." + } + }, + "public": true, + "created_at": "2014-09-14T21:22:11Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287441071", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/22/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/22", + "id": 42730696, + "number": 22, + "title": "Faulty data Collection", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T21:18:21Z", + "updated_at": "2014-09-14T21:18:21Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-14T21:18:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287428705", + "type": "IssueCommentEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 4, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-14T20:58:22Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55539323", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16#issuecomment-55539323", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 55539323, + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T20:58:22Z", + "updated_at": "2014-09-14T20:58:22Z", + "body": "I had this same issue. What worked for me was creating an alpha-numeric string (like specified above, I like to either copy and paste the nonce that is already there 5 times and then add two characters, or use ABCDEFGHIJKLMNOPQRSTUVWXYZ123456). Then you have to first refresh your request before sending it again. This was the solution for me, since my problem kept coming up when I would simply send another request after fixing the nonce. Try refreshing and then sending. Let me know if this works." + } + }, + "public": true, + "created_at": "2014-09-14T20:58:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287424293", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 42729530, + "number": 21, + "title": "npm express install error", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-14T20:28:51Z", + "updated_at": "2014-09-14T20:51:24Z", + "closed_at": null, + "body": "Having tons of npm errors in my 12.04 Ubuntu distro. After proceeding normally through the first part of the node.js tutorial I have arrived upon the express install portion. After typing \"npm install express\" I get installation errors. \r\n\r\nReceived several warnings such as \"UNKNOWN\" and \"Unsupported\". Performed an npm uninstall and reinstall to troubleshoot with no luck. \r\n\r\n**Getting very frustrated with this assignment in total. Poured in 4 hours so far, attempting to learn all I can and it is feeling like I won't finish by tonight. I would love to see a different teaching approach for these weekend assignments and some assignment change or exception for this one with all of the software issues I have been tripping over.**\r\n\r\nAny help with this npm issue would be greatly appreciated. \r\n\r\n![image](http://i.imgur.com/iOcgLWB.png)" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55539091", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21#issuecomment-55539091", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 55539091, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T20:51:24Z", + "updated_at": "2014-09-14T20:51:24Z", + "body": "What is the version of your node and npm? The error message clearly says that your node version is 0.6.12. Have you tried to updated node?\r\n![687474703a2f2f692e696d6775722e636f6d2f694f63674c57422e706e67__1366x768__and_user_guide_ _spiritdude_openjscad_org_wiki](https://cloud.githubusercontent.com/assets/129562/4265429/93b144a4-3c50-11e4-9184-952338e50adc.png)\r\n\r\nhttps://rtcamp.com/tutorials/nodejs/node-js-npm-install-ubuntu/" + } + }, + "public": true, + "created_at": "2014-09-14T20:51:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287410357", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/21/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/21", + "id": 42729530, + "number": 21, + "title": "npm express install error", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T20:28:51Z", + "updated_at": "2014-09-14T20:28:51Z", + "closed_at": null, + "body": "Having tons of npm errors in my 12.04 Ubuntu distro. After proceeding normally through the first part of the node.js tutorial I have arrived upon the express install portion. After typing \"npm install express\" I get installation errors. \r\n\r\nReceived several warnings such as \"UNKNOWN\" and \"Unsupported\". Performed an npm uninstall and reinstall to troubleshoot with no luck. \r\n\r\n**Getting very frustrated with this assignment in total. Poured in 4 hours so far, attempting to learn all I can and it is feeling like I won't finish by tonight. I would love to see a different teaching approach for these weekend assignments and some assignment change or exception for this one with all of the software issues I have been tripping over.**\r\n\r\nAny help with this npm issue would be greatly appreciated. \r\n\r\n![image](http://i.imgur.com/iOcgLWB.png)" + } + }, + "public": true, + "created_at": "2014-09-14T20:28:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287398077", + "type": "ForkEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24032115, + "name": "challenge-week-3", + "full_name": "peymanmortazavi/challenge-week-3", + "owner": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/peymanmortazavi/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3", + "forks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/peymanmortazavi/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T20:08:31Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/peymanmortazavi/challenge-week-3.git", + "ssh_url": "git@github.com:peymanmortazavi/challenge-week-3.git", + "clone_url": "https://github.com/peymanmortazavi/challenge-week-3.git", + "svn_url": "https://github.com/peymanmortazavi/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T20:08:31Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287397426", + "type": "IssuesEvent", + "actor": { + "id": 5572218, + "login": "peymanmortazavi", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/20/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/20", + "id": 42729039, + "number": 20, + "title": "This is Peyman", + "user": { + "login": "peymanmortazavi", + "id": 5572218, + "avatar_url": "https://avatars.githubusercontent.com/u/5572218?v=2", + "gravatar_id": "e4a3b02303a3224cd5e24234116473e1", + "url": "https://api.github.com/users/peymanmortazavi", + "html_url": "https://github.com/peymanmortazavi", + "followers_url": "https://api.github.com/users/peymanmortazavi/followers", + "following_url": "https://api.github.com/users/peymanmortazavi/following{/other_user}", + "gists_url": "https://api.github.com/users/peymanmortazavi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/peymanmortazavi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/peymanmortazavi/subscriptions", + "organizations_url": "https://api.github.com/users/peymanmortazavi/orgs", + "repos_url": "https://api.github.com/users/peymanmortazavi/repos", + "events_url": "https://api.github.com/users/peymanmortazavi/events{/privacy}", + "received_events_url": "https://api.github.com/users/peymanmortazavi/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T20:07:22Z", + "updated_at": "2014-09-14T20:07:22Z", + "closed_at": null, + "body": "I had eggs for breakfast. That's my issue :)" + } + }, + "public": true, + "created_at": "2014-09-14T20:07:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287393396", + "type": "ForkEvent", + "actor": { + "id": 8551273, + "login": "adrian-chen", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24031926, + "name": "challenge-week-3", + "full_name": "adrian-chen/challenge-week-3", + "owner": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/adrian-chen/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/adrian-chen/challenge-week-3", + "forks_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/adrian-chen/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T20:01:04Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/adrian-chen/challenge-week-3.git", + "ssh_url": "git@github.com:adrian-chen/challenge-week-3.git", + "clone_url": "https://github.com/adrian-chen/challenge-week-3.git", + "svn_url": "https://github.com/adrian-chen/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T20:01:04Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287390978", + "type": "ForkEvent", + "actor": { + "id": 8551273, + "login": "adrian-chen", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24031822, + "name": "project-1-make-a", + "full_name": "adrian-chen/project-1-make-a", + "owner": { + "login": "adrian-chen", + "id": 8551273, + "avatar_url": "https://avatars.githubusercontent.com/u/8551273?v=2", + "gravatar_id": "ed3d513700101a554a82369fc8cdc971", + "url": "https://api.github.com/users/adrian-chen", + "html_url": "https://github.com/adrian-chen", + "followers_url": "https://api.github.com/users/adrian-chen/followers", + "following_url": "https://api.github.com/users/adrian-chen/following{/other_user}", + "gists_url": "https://api.github.com/users/adrian-chen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/adrian-chen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/adrian-chen/subscriptions", + "organizations_url": "https://api.github.com/users/adrian-chen/orgs", + "repos_url": "https://api.github.com/users/adrian-chen/repos", + "events_url": "https://api.github.com/users/adrian-chen/events{/privacy}", + "received_events_url": "https://api.github.com/users/adrian-chen/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/adrian-chen/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/adrian-chen/project-1-make-a", + "forks_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/adrian-chen/project-1-make-a/releases{/id}", + "created_at": "2014-09-14T19:57:16Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/adrian-chen/project-1-make-a.git", + "ssh_url": "git@github.com:adrian-chen/project-1-make-a.git", + "clone_url": "https://github.com/adrian-chen/project-1-make-a.git", + "svn_url": "https://github.com/adrian-chen/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T19:57:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287377163", + "type": "IssuesEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/19/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/19", + "id": 42728287, + "number": 19, + "title": "Authentication Issues", + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T19:34:10Z", + "updated_at": "2014-09-14T19:34:10Z", + "closed_at": null, + "body": "Like some other individuals, I'm having problems with authentication. I have replayed the tutorial multiple times to ensure that I followed the correct steps.\r\n\r\nIt may have to do with the nonce, but I doubt it. This is the only [Twitter Community forum](https://twittercommunity.com/t/how-to-generate-an-oauth-nonce/1307) that I could find on the topic and the nonce I used was composed of 32 alpha-numeric characters like it sounds like it should be.\r\n\r\nI have had a Twitter account since 2012ish and just downloaded Chrome/Postman today for the project.\r\n\r\nThanks,\r\nAlexia" + } + }, + "public": true, + "created_at": "2014-09-14T19:34:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287376062", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-14T19:32:21Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55536591", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16#issuecomment-55536591", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 55536591, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T19:32:21Z", + "updated_at": "2014-09-14T19:32:21Z", + "body": "Okay, I'll make a separate issue. I have a Twitter account, so that's not the culprit. Thanks.\r\n\r\nAlexia" + } + }, + "public": true, + "created_at": "2014-09-14T19:32:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287329166", + "type": "IssuesEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/18/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/18", + "id": 42726604, + "number": 18, + "title": "This is Jake Charland", + "user": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T18:15:22Z", + "updated_at": "2014-09-14T18:15:22Z", + "closed_at": null, + "body": "" + } + }, + "public": true, + "created_at": "2014-09-14T18:15:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287311159", + "type": "PullRequestEvent", + "actor": { + "id": 7710325, + "login": "dare599z", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 10, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/10", + "id": 21206372, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/10", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/10.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/10.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/10", + "number": 10, + "state": "open", + "locked": false, + "title": "Turn in -- Justin McBride", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-14T17:44:10Z", + "updated_at": "2014-09-14T17:44:10Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/10/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/10/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/10/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/0146033a2fad2bb5ce8857acb6b20a0e6b08762b", + "head": { + "label": "dare599z:master", + "ref": "master", + "sha": "0146033a2fad2bb5ce8857acb6b20a0e6b08762b", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23935938, + "name": "project-1-make-a", + "full_name": "dare599z/project-1-make-a", + "owner": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dare599z/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dare599z/project-1-make-a", + "forks_url": "https://api.github.com/repos/dare599z/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/dare599z/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dare599z/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dare599z/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/dare599z/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/dare599z/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/dare599z/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/dare599z/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/dare599z/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/dare599z/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dare599z/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dare599z/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/dare599z/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/dare599z/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/dare599z/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/dare599z/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/dare599z/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dare599z/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dare599z/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dare599z/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/dare599z/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dare599z/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/dare599z/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dare599z/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/dare599z/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/dare599z/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dare599z/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dare599z/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dare599z/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/dare599z/project-1-make-a/releases{/id}", + "created_at": "2014-09-11T21:12:11Z", + "updated_at": "2014-09-12T00:29:46Z", + "pushed_at": "2014-09-14T17:43:24Z", + "git_url": "git://github.com/dare599z/project-1-make-a.git", + "ssh_url": "git@github.com:dare599z/project-1-make-a.git", + "clone_url": "https://github.com/dare599z/project-1-make-a.git", + "svn_url": "https://github.com/dare599z/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "forks_count": 11, + "mirror_url": null, + "open_issues_count": 6, + "forks": 11, + "open_issues": 6, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/10" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/10" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/10" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/10/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/10/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/10/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/0146033a2fad2bb5ce8857acb6b20a0e6b08762b" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 3, + "additions": 754895, + "deletions": 11, + "changed_files": 4 + } + }, + "public": true, + "created_at": "2014-09-14T17:44:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287309598", + "type": "ForkEvent", + "actor": { + "id": 3269358, + "login": "LoganBates", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24028574, + "name": "challenge-week-3", + "full_name": "LoganBates/challenge-week-3", + "owner": { + "login": "LoganBates", + "id": 3269358, + "avatar_url": "https://avatars.githubusercontent.com/u/3269358?v=2", + "gravatar_id": "3b26ae9a02d2c6711989a2c56b354dac", + "url": "https://api.github.com/users/LoganBates", + "html_url": "https://github.com/LoganBates", + "followers_url": "https://api.github.com/users/LoganBates/followers", + "following_url": "https://api.github.com/users/LoganBates/following{/other_user}", + "gists_url": "https://api.github.com/users/LoganBates/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LoganBates/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LoganBates/subscriptions", + "organizations_url": "https://api.github.com/users/LoganBates/orgs", + "repos_url": "https://api.github.com/users/LoganBates/repos", + "events_url": "https://api.github.com/users/LoganBates/events{/privacy}", + "received_events_url": "https://api.github.com/users/LoganBates/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/LoganBates/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/LoganBates/challenge-week-3", + "forks_url": "https://api.github.com/repos/LoganBates/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/LoganBates/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/LoganBates/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/LoganBates/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/LoganBates/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/LoganBates/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/LoganBates/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/LoganBates/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/LoganBates/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/LoganBates/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/LoganBates/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/LoganBates/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/LoganBates/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/LoganBates/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/LoganBates/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/LoganBates/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/LoganBates/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/LoganBates/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/LoganBates/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/LoganBates/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/LoganBates/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/LoganBates/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/LoganBates/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/LoganBates/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/LoganBates/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/LoganBates/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/LoganBates/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/LoganBates/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/LoganBates/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/LoganBates/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/LoganBates/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T17:41:22Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/LoganBates/challenge-week-3.git", + "ssh_url": "git@github.com:LoganBates/challenge-week-3.git", + "clone_url": "https://github.com/LoganBates/challenge-week-3.git", + "svn_url": "https://github.com/LoganBates/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T17:41:23Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287298408", + "type": "ForkEvent", + "actor": { + "id": 8550866, + "login": "nikitavoskoboynik", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24028160, + "name": "challenge-week-3", + "full_name": "nikitavoskoboynik/challenge-week-3", + "owner": { + "login": "nikitavoskoboynik", + "id": 8550866, + "avatar_url": "https://avatars.githubusercontent.com/u/8550866?v=2", + "gravatar_id": "f457f0130f2cea5bba9610caa707a4f7", + "url": "https://api.github.com/users/nikitavoskoboynik", + "html_url": "https://github.com/nikitavoskoboynik", + "followers_url": "https://api.github.com/users/nikitavoskoboynik/followers", + "following_url": "https://api.github.com/users/nikitavoskoboynik/following{/other_user}", + "gists_url": "https://api.github.com/users/nikitavoskoboynik/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nikitavoskoboynik/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nikitavoskoboynik/subscriptions", + "organizations_url": "https://api.github.com/users/nikitavoskoboynik/orgs", + "repos_url": "https://api.github.com/users/nikitavoskoboynik/repos", + "events_url": "https://api.github.com/users/nikitavoskoboynik/events{/privacy}", + "received_events_url": "https://api.github.com/users/nikitavoskoboynik/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nikitavoskoboynik/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3", + "forks_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/nikitavoskoboynik/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T17:22:27Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/nikitavoskoboynik/challenge-week-3.git", + "ssh_url": "git@github.com:nikitavoskoboynik/challenge-week-3.git", + "clone_url": "https://github.com/nikitavoskoboynik/challenge-week-3.git", + "svn_url": "https://github.com/nikitavoskoboynik/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T17:22:29Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287294358", + "type": "IssuesEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/17/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/17", + "id": 42725355, + "number": 17, + "title": "This is Brian Newsom", + "user": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T17:15:24Z", + "updated_at": "2014-09-14T17:15:24Z", + "closed_at": null, + "body": "I ate nothing for breakfast today :(" + } + }, + "public": true, + "created_at": "2014-09-14T17:15:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287277324", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-14T16:46:40Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55531373", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16#issuecomment-55531373", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 55531373, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T16:46:40Z", + "updated_at": "2014-09-14T16:46:40Z", + "body": "Make sure you've created a Twitter account.\r\nIf you have made your best effort and still unable to resolve this authentication issue, you can skip this and make this up during the class on Monday without losing any point. We will set aside some time to troubleshoot the authentication issue together.\r\n\r\nTo prove that you've made the best effort, you must report an issue about this, like what cwitty1919 and alne4294 did." + } + }, + "public": true, + "created_at": "2014-09-14T16:46:40Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287273132", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/14", + "id": 42707984, + "number": 14, + "title": "Authentication errors", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-13T23:05:24Z", + "updated_at": "2014-09-14T16:39:45Z", + "closed_at": null, + "body": "I have been stuck on this error code 32 from Postman for the past several hours. No luck after scouring the internet and working with two of my roommates who have completed this portion of the assignment. \r\n\r\nI follow the tutorial and submit a successful GET. This returns my one and only Tweet as of now. I then replace the \"URL Parameter Key\" with \"https://api.twitter.com/1.1/statuses/update.json\" and the GET to a POST. This returns error code 32 \"Could not authenticate you\". \r\n\r\nI have regenerated keys several times, refreshed the page several times, exited out of my browser entirely several times, and still no luck. \r\n\r\n![image](http://i.imgur.com/5oaBC15.png)" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55531145", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/14#issuecomment-55531145", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14", + "id": 55531145, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T16:39:45Z", + "updated_at": "2014-09-14T16:39:45Z", + "body": "I think Chris and I had the same issue but were unable to resolve it. See [issue 16](https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16).\r\n\r\nAlexia" + } + }, + "public": true, + "created_at": "2014-09-14T16:39:45Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287270976", + "type": "IssueCommentEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-14T16:36:22Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55531031", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16#issuecomment-55531031", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 55531031, + "user": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-14T16:36:22Z", + "updated_at": "2014-09-14T16:36:22Z", + "body": "I'm having the same issue and have replayed the tutorial multiple times to ensure that I followed the correct steps.\r\n\r\nThis is the only [Twitter Community forum|https://twittercommunity.com/t/how-to-generate-an-oauth-nonce/1307] that I could find on the topic and the nonce I used was composed of 32 alpha-numeric characters like it sounds like it should be.\r\n\r\nHas anyone had any luck with this?" + } + }, + "public": true, + "created_at": "2014-09-14T16:36:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287265934", + "type": "ForkEvent", + "actor": { + "id": 3400639, + "login": "jakecharland", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24026916, + "name": "challenge-week-3", + "full_name": "jakecharland/challenge-week-3", + "owner": { + "login": "jakecharland", + "id": 3400639, + "avatar_url": "https://avatars.githubusercontent.com/u/3400639?v=2", + "gravatar_id": "68c41c72115a22ad5c7298d80bacff62", + "url": "https://api.github.com/users/jakecharland", + "html_url": "https://github.com/jakecharland", + "followers_url": "https://api.github.com/users/jakecharland/followers", + "following_url": "https://api.github.com/users/jakecharland/following{/other_user}", + "gists_url": "https://api.github.com/users/jakecharland/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakecharland/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakecharland/subscriptions", + "organizations_url": "https://api.github.com/users/jakecharland/orgs", + "repos_url": "https://api.github.com/users/jakecharland/repos", + "events_url": "https://api.github.com/users/jakecharland/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakecharland/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jakecharland/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/jakecharland/challenge-week-3", + "forks_url": "https://api.github.com/repos/jakecharland/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/jakecharland/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakecharland/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakecharland/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/jakecharland/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/jakecharland/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakecharland/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/jakecharland/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakecharland/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakecharland/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakecharland/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakecharland/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/jakecharland/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/jakecharland/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/jakecharland/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/jakecharland/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/jakecharland/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakecharland/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakecharland/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakecharland/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/jakecharland/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakecharland/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakecharland/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/jakecharland/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakecharland/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/jakecharland/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakecharland/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakecharland/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakecharland/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakecharland/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/jakecharland/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T16:27:58Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/jakecharland/challenge-week-3.git", + "ssh_url": "git@github.com:jakecharland/challenge-week-3.git", + "clone_url": "https://github.com/jakecharland/challenge-week-3.git", + "svn_url": "https://github.com/jakecharland/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T16:27:59Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287211121", + "type": "ForkEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24024714, + "name": "challenge-week-3", + "full_name": "alne4294/challenge-week-3", + "owner": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alne4294/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/alne4294/challenge-week-3", + "forks_url": "https://api.github.com/repos/alne4294/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/alne4294/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alne4294/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alne4294/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/alne4294/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/alne4294/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/alne4294/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/alne4294/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/alne4294/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/alne4294/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alne4294/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alne4294/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/alne4294/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/alne4294/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/alne4294/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/alne4294/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/alne4294/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alne4294/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alne4294/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alne4294/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/alne4294/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/alne4294/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alne4294/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/alne4294/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alne4294/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/alne4294/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/alne4294/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alne4294/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alne4294/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alne4294/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/alne4294/challenge-week-3/releases{/id}", + "created_at": "2014-09-14T14:59:00Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/alne4294/challenge-week-3.git", + "ssh_url": "git@github.com:alne4294/challenge-week-3.git", + "clone_url": "https://github.com/alne4294/challenge-week-3.git", + "svn_url": "https://github.com/alne4294/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T14:59:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2287210691", + "type": "ForkEvent", + "actor": { + "id": 2325930, + "login": "alne4294", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 24024694, + "name": "project-1-make-a", + "full_name": "alne4294/project-1-make-a", + "owner": { + "login": "alne4294", + "id": 2325930, + "avatar_url": "https://avatars.githubusercontent.com/u/2325930?v=2", + "gravatar_id": "0226cd13234e75077fb60f62d610b629", + "url": "https://api.github.com/users/alne4294", + "html_url": "https://github.com/alne4294", + "followers_url": "https://api.github.com/users/alne4294/followers", + "following_url": "https://api.github.com/users/alne4294/following{/other_user}", + "gists_url": "https://api.github.com/users/alne4294/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alne4294/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alne4294/subscriptions", + "organizations_url": "https://api.github.com/users/alne4294/orgs", + "repos_url": "https://api.github.com/users/alne4294/repos", + "events_url": "https://api.github.com/users/alne4294/events{/privacy}", + "received_events_url": "https://api.github.com/users/alne4294/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alne4294/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/alne4294/project-1-make-a", + "forks_url": "https://api.github.com/repos/alne4294/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/alne4294/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alne4294/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alne4294/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/alne4294/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/alne4294/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/alne4294/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/alne4294/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/alne4294/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/alne4294/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alne4294/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alne4294/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/alne4294/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/alne4294/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/alne4294/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/alne4294/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/alne4294/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alne4294/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alne4294/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alne4294/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/alne4294/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/alne4294/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alne4294/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/alne4294/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alne4294/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/alne4294/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/alne4294/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alne4294/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alne4294/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alne4294/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/alne4294/project-1-make-a/releases{/id}", + "created_at": "2014-09-14T14:58:14Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/alne4294/project-1-make-a.git", + "ssh_url": "git@github.com:alne4294/project-1-make-a.git", + "clone_url": "https://github.com/alne4294/project-1-make-a.git", + "svn_url": "https://github.com/alne4294/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-14T14:58:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286832928", + "type": "IssuesEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/16/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/16", + "id": 42709107, + "number": 16, + "title": "Getting Nonce That Works", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-14T00:16:08Z", + "updated_at": "2014-09-14T00:16:08Z", + "closed_at": null, + "body": "Hi all,\r\n\r\nWhen I am trying to run a request using my Postman App, I keep getting an authentication error that I know has to do with the Nonce. In the tutorial, Rory fixes this problem by dropping a new 32 character Nonce out of thin air. When I try to do the same (or at least repeat the same four characters eight times in a row), this does not fix the issue. " + } + }, + "public": true, + "created_at": "2014-09-14T00:16:09Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286819471", + "type": "IssueCommentEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/15", + "id": 42708549, + "number": 15, + "title": "CoffeeScript > JavaScript", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-13T23:41:31Z", + "updated_at": "2014-09-13T23:45:53Z", + "closed_at": null, + "body": null + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55510726", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/15#issuecomment-55510726", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15", + "id": 55510726, + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-13T23:45:53Z", + "updated_at": "2014-09-13T23:45:53Z", + "body": "This isn't an issue, but just as a heads up to others, I would strongly recommend using CoffeeScript over JavaScript. It pulls all of the best features from JavaScript and omits the nasty parts. function calls are much simpler, variables don't need a declaration, etc. Lots of good stuff. It's an easy transfer over since CoffeeScript, at its roots, still compiles down to Javascript. Here's a good place to read about getting started:\nhttp://coffeescript.org/\n\nAnd to make this clear to others since it took me a bit to figure out, once you install CoffeeScript, you can run it with the command `coffee <file>` rather than `node <file>`." + } + }, + "public": true, + "created_at": "2014-09-13T23:45:53Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286817601", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/15/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/15", + "id": 42708549, + "number": 15, + "title": "CoffeeScript > JavaScript", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-13T23:41:31Z", + "updated_at": "2014-09-13T23:41:31Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-13T23:41:31Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286808023", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/14", + "id": 42707984, + "number": 14, + "title": "Authentication errors", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-13T23:05:24Z", + "updated_at": "2014-09-13T23:19:23Z", + "closed_at": null, + "body": "I have been stuck on this error code 32 from Postman for the past several hours. No luck after scouring the internet and working with two of my roommates who have completed this portion of the assignment. \r\n\r\nI follow the tutorial and submit a successful GET. This returns my one and only Tweet as of now. I then replace the \"URL Parameter Key\" with \"https://api.twitter.com/1.1/statuses/update.json\" and the GET to a POST. This returns error code 32 \"Could not authenticate you\". \r\n\r\nI have regenerated keys several times, refreshed the page several times, exited out of my browser entirely several times, and still no luck. \r\n\r\n![image](http://i.imgur.com/5oaBC15.png)" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55510135", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/14#issuecomment-55510135", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14", + "id": 55510135, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-13T23:19:23Z", + "updated_at": "2014-09-13T23:19:23Z", + "body": "You've tried your best. You can use your roommate's setup to complete this step and move on to the rest of the challenges." + } + }, + "public": true, + "created_at": "2014-09-13T23:19:23Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286801679", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/14/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/14", + "id": 42707984, + "number": 14, + "title": "Authentication errors", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-13T23:05:24Z", + "updated_at": "2014-09-13T23:05:24Z", + "closed_at": null, + "body": "I have been stuck on this error code 32 from Postman for the past several hours. No luck after scouring the internet and working with two of my roommates who have completed this portion of the assignment. \r\n\r\nI follow the tutorial and submit a successful GET. This returns my one and only Tweet as of now. I then replace the \"URL Parameter Key\" with \"https://api.twitter.com/1.1/statuses/update.json\" and the GET to a POST. This returns error code 32 \"Could not authenticate you\". \r\n\r\nI have regenerated keys several times, refreshed the page several times, exited out of my browser entirely several times, and still no luck. \r\n\r\n![image](http://i.imgur.com/5oaBC15.png)" + } + }, + "public": true, + "created_at": "2014-09-13T23:05:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286773238", + "type": "ForkEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 24007158, + "name": "challenge-week-3", + "full_name": "indiesquidge/challenge-week-3", + "owner": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/indiesquidge/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/indiesquidge/challenge-week-3", + "forks_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/indiesquidge/challenge-week-3/releases{/id}", + "created_at": "2014-09-13T22:09:29Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/indiesquidge/challenge-week-3.git", + "ssh_url": "git@github.com:indiesquidge/challenge-week-3.git", + "clone_url": "https://github.com/indiesquidge/challenge-week-3.git", + "svn_url": "https://github.com/indiesquidge/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-13T22:09:29Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286744736", + "type": "ForkEvent", + "actor": { + "id": 3485377, + "login": "sako0938", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?" + }, + "repo": { + "id": 22798692, + "name": "CSCI-4830-002-2014/challenge-week-1", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-1" + }, + "payload": { + "forkee": { + "id": 24006141, + "name": "challenge-week-1", + "full_name": "sako0938/challenge-week-1", + "owner": { + "login": "sako0938", + "id": 3485377, + "avatar_url": "https://avatars.githubusercontent.com/u/3485377?v=2", + "gravatar_id": "c2f901da3bea1bdde0dab664a79b42d0", + "url": "https://api.github.com/users/sako0938", + "html_url": "https://github.com/sako0938", + "followers_url": "https://api.github.com/users/sako0938/followers", + "following_url": "https://api.github.com/users/sako0938/following{/other_user}", + "gists_url": "https://api.github.com/users/sako0938/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sako0938/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sako0938/subscriptions", + "organizations_url": "https://api.github.com/users/sako0938/orgs", + "repos_url": "https://api.github.com/users/sako0938/repos", + "events_url": "https://api.github.com/users/sako0938/events{/privacy}", + "received_events_url": "https://api.github.com/users/sako0938/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/sako0938/challenge-week-1", + "description": "Learning Challenge Week 1", + "fork": true, + "url": "https://api.github.com/repos/sako0938/challenge-week-1", + "forks_url": "https://api.github.com/repos/sako0938/challenge-week-1/forks", + "keys_url": "https://api.github.com/repos/sako0938/challenge-week-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sako0938/challenge-week-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sako0938/challenge-week-1/teams", + "hooks_url": "https://api.github.com/repos/sako0938/challenge-week-1/hooks", + "issue_events_url": "https://api.github.com/repos/sako0938/challenge-week-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/sako0938/challenge-week-1/events", + "assignees_url": "https://api.github.com/repos/sako0938/challenge-week-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/sako0938/challenge-week-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/sako0938/challenge-week-1/tags", + "blobs_url": "https://api.github.com/repos/sako0938/challenge-week-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sako0938/challenge-week-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sako0938/challenge-week-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sako0938/challenge-week-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sako0938/challenge-week-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sako0938/challenge-week-1/languages", + "stargazers_url": "https://api.github.com/repos/sako0938/challenge-week-1/stargazers", + "contributors_url": "https://api.github.com/repos/sako0938/challenge-week-1/contributors", + "subscribers_url": "https://api.github.com/repos/sako0938/challenge-week-1/subscribers", + "subscription_url": "https://api.github.com/repos/sako0938/challenge-week-1/subscription", + "commits_url": "https://api.github.com/repos/sako0938/challenge-week-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sako0938/challenge-week-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sako0938/challenge-week-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sako0938/challenge-week-1/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/sako0938/challenge-week-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/sako0938/challenge-week-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sako0938/challenge-week-1/merges", + "archive_url": "https://api.github.com/repos/sako0938/challenge-week-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sako0938/challenge-week-1/downloads", + "issues_url": "https://api.github.com/repos/sako0938/challenge-week-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/sako0938/challenge-week-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sako0938/challenge-week-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sako0938/challenge-week-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sako0938/challenge-week-1/labels{/name}", + "releases_url": "https://api.github.com/repos/sako0938/challenge-week-1/releases{/id}", + "created_at": "2014-09-13T21:19:22Z", + "updated_at": "2014-08-10T01:11:52Z", + "pushed_at": "2014-08-21T11:33:02Z", + "git_url": "git://github.com/sako0938/challenge-week-1.git", + "ssh_url": "git@github.com:sako0938/challenge-week-1.git", + "clone_url": "https://github.com/sako0938/challenge-week-1.git", + "svn_url": "https://github.com/sako0938/challenge-week-1", + "homepage": null, + "size": 308, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-13T21:19:22Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286713237", + "type": "IssuesEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/13/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/13", + "id": 42704747, + "number": 13, + "title": "This is Alex Tsankov", + "user": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-13T20:22:16Z", + "updated_at": "2014-09-13T20:22:16Z", + "closed_at": null, + "body": "I ate a piece of toast for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-13T20:22:16Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286611021", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 42585116, + "number": 10, + "title": "No Twitter Account", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-12T00:22:02Z", + "updated_at": "2014-09-13T17:17:55Z", + "closed_at": "2014-09-13T17:17:55Z", + "body": "I don't have a Twitter account, and after seeing the first few minutes of the tutorial, it looks like I need to make one. Is this the case?" + } + }, + "public": true, + "created_at": "2014-09-13T17:17:56Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286611019", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 42585116, + "number": 10, + "title": "No Twitter Account", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-12T00:22:02Z", + "updated_at": "2014-09-13T17:17:55Z", + "closed_at": "2014-09-13T17:17:55Z", + "body": "I don't have a Twitter account, and after seeing the first few minutes of the tutorial, it looks like I need to make one. Is this the case?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55500510", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10#issuecomment-55500510", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 55500510, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-13T17:17:55Z", + "updated_at": "2014-09-13T17:17:55Z", + "body": "Made a Twitter account. Let's assure we maintain proper flow by closing issues upon successful solution." + } + }, + "public": true, + "created_at": "2014-09-13T17:17:55Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286610503", + "type": "IssueCommentEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/12", + "id": 42700538, + "number": 12, + "title": "Bad Authentication Data", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-13T17:04:54Z", + "updated_at": "2014-09-13T17:17:00Z", + "closed_at": "2014-09-13T17:17:00Z", + "body": "This assignment is proving to be very error prone already for me. I have been trying to work through my Twitter authentication for an hour now with nothing but errors. Here is the situation:\r\n\r\nI am following Ierne up until 6:20 in the video when he pastes the 32 character \"nonce\" value into Twitter. This situation does not fix my error code. I have error code 215 \"Bad Authentication Data\". In the video Postman highlights his \"nonce\" value to show that is where the error lies, but I am not getting any fields highlighted for assistance by postman.\r\n\r\nI followed his actions up until this point, so my newly regenerated keys have proper read and write access and I am attempting to use the \"nonce\" value from the video of \"ABCDEFGHIJKLMNOPQRSTUVWXYZ123456\" which is 32 characters. Need some more pointers please.\r\n\r\n![image](http://i.imgur.com/wiErMtx.png)\r\n![image](http://i.imgur.com/iuoC9L8.png)" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55500484", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/12#issuecomment-55500484", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12", + "id": 55500484, + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-13T17:17:00Z", + "updated_at": "2014-09-13T17:17:00Z", + "body": "solved by @peymanmortazavi" + } + }, + "public": true, + "created_at": "2014-09-13T17:17:00Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286610502", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/12", + "id": 42700538, + "number": 12, + "title": "Bad Authentication Data", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-13T17:04:54Z", + "updated_at": "2014-09-13T17:17:00Z", + "closed_at": "2014-09-13T17:17:00Z", + "body": "This assignment is proving to be very error prone already for me. I have been trying to work through my Twitter authentication for an hour now with nothing but errors. Here is the situation:\r\n\r\nI am following Ierne up until 6:20 in the video when he pastes the 32 character \"nonce\" value into Twitter. This situation does not fix my error code. I have error code 215 \"Bad Authentication Data\". In the video Postman highlights his \"nonce\" value to show that is where the error lies, but I am not getting any fields highlighted for assistance by postman.\r\n\r\nI followed his actions up until this point, so my newly regenerated keys have proper read and write access and I am attempting to use the \"nonce\" value from the video of \"ABCDEFGHIJKLMNOPQRSTUVWXYZ123456\" which is 32 characters. Need some more pointers please.\r\n\r\n![image](http://i.imgur.com/wiErMtx.png)\r\n![image](http://i.imgur.com/iuoC9L8.png)" + } + }, + "public": true, + "created_at": "2014-09-13T17:17:00Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286603524", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/12/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/12", + "id": 42700538, + "number": 12, + "title": "Bad Authentication Data", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-13T17:04:54Z", + "updated_at": "2014-09-13T17:04:54Z", + "closed_at": null, + "body": "This assignment is proving to be very error prone already for me. I have been trying to work through my Twitter authentication for an hour now with nothing but errors. Here is the situation:\r\n\r\nI am following Ierne up until 6:20 in the video when he pastes the 32 character \"nonce\" value into Twitter. This situation does not fix my error code. I have error code 215 \"Bad Authentication Data\". In the video Postman highlights his \"nonce\" value to show that is where the error lies, but I am not getting any fields highlighted for assistance by postman.\r\n\r\nI followed his actions up until this point, so my newly regenerated keys have proper read and write access and I am attempting to use the \"nonce\" value from the video of \"ABCDEFGHIJKLMNOPQRSTUVWXYZ123456\" which is 32 characters. Need some more pointers please.\r\n\r\n![image](http://i.imgur.com/wiErMtx.png)\r\n![image](http://i.imgur.com/iuoC9L8.png)" + } + }, + "public": true, + "created_at": "2014-09-13T17:04:57Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286584135", + "type": "ForkEvent", + "actor": { + "id": 7736082, + "login": "Irfann1", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 23999396, + "name": "challenge-week-3", + "full_name": "Irfann1/challenge-week-3", + "owner": { + "login": "Irfann1", + "id": 7736082, + "avatar_url": "https://avatars.githubusercontent.com/u/7736082?v=2", + "gravatar_id": "b7817f283a210fed14de936c18592beb", + "url": "https://api.github.com/users/Irfann1", + "html_url": "https://github.com/Irfann1", + "followers_url": "https://api.github.com/users/Irfann1/followers", + "following_url": "https://api.github.com/users/Irfann1/following{/other_user}", + "gists_url": "https://api.github.com/users/Irfann1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Irfann1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Irfann1/subscriptions", + "organizations_url": "https://api.github.com/users/Irfann1/orgs", + "repos_url": "https://api.github.com/users/Irfann1/repos", + "events_url": "https://api.github.com/users/Irfann1/events{/privacy}", + "received_events_url": "https://api.github.com/users/Irfann1/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Irfann1/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/Irfann1/challenge-week-3", + "forks_url": "https://api.github.com/repos/Irfann1/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/Irfann1/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Irfann1/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Irfann1/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/Irfann1/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/Irfann1/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/Irfann1/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/Irfann1/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/Irfann1/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/Irfann1/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Irfann1/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Irfann1/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/Irfann1/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/Irfann1/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/Irfann1/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/Irfann1/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/Irfann1/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Irfann1/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Irfann1/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Irfann1/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/Irfann1/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/Irfann1/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Irfann1/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/Irfann1/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Irfann1/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/Irfann1/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/Irfann1/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Irfann1/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Irfann1/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Irfann1/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/Irfann1/challenge-week-3/releases{/id}", + "created_at": "2014-09-13T16:30:45Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/Irfann1/challenge-week-3.git", + "ssh_url": "git@github.com:Irfann1/challenge-week-3.git", + "clone_url": "https://github.com/Irfann1/challenge-week-3.git", + "svn_url": "https://github.com/Irfann1/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-13T16:30:46Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286581079", + "type": "ForkEvent", + "actor": { + "id": 3420199, + "login": "rodenr", + "gravatar_id": "b00ee0492ce05538c6840d32c9ca7018", + "url": "https://api.github.com/users/rodenr", + "avatar_url": "https://avatars.githubusercontent.com/u/3420199?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 23999277, + "name": "challenge-week-3", + "full_name": "rodenr/challenge-week-3", + "owner": { + "login": "rodenr", + "id": 3420199, + "avatar_url": "https://avatars.githubusercontent.com/u/3420199?v=2", + "gravatar_id": "b00ee0492ce05538c6840d32c9ca7018", + "url": "https://api.github.com/users/rodenr", + "html_url": "https://github.com/rodenr", + "followers_url": "https://api.github.com/users/rodenr/followers", + "following_url": "https://api.github.com/users/rodenr/following{/other_user}", + "gists_url": "https://api.github.com/users/rodenr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rodenr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rodenr/subscriptions", + "organizations_url": "https://api.github.com/users/rodenr/orgs", + "repos_url": "https://api.github.com/users/rodenr/repos", + "events_url": "https://api.github.com/users/rodenr/events{/privacy}", + "received_events_url": "https://api.github.com/users/rodenr/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/rodenr/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/rodenr/challenge-week-3", + "forks_url": "https://api.github.com/repos/rodenr/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/rodenr/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/rodenr/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/rodenr/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/rodenr/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/rodenr/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/rodenr/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/rodenr/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/rodenr/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/rodenr/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/rodenr/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/rodenr/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/rodenr/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/rodenr/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/rodenr/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/rodenr/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/rodenr/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/rodenr/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/rodenr/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/rodenr/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/rodenr/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/rodenr/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/rodenr/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/rodenr/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/rodenr/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/rodenr/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/rodenr/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/rodenr/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/rodenr/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/rodenr/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/rodenr/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/rodenr/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/rodenr/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/rodenr/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/rodenr/challenge-week-3/releases{/id}", + "created_at": "2014-09-13T16:25:38Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/rodenr/challenge-week-3.git", + "ssh_url": "git@github.com:rodenr/challenge-week-3.git", + "clone_url": "https://github.com/rodenr/challenge-week-3.git", + "svn_url": "https://github.com/rodenr/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-13T16:25:38Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2286373303", + "type": "IssuesEvent", + "actor": { + "id": 5141248, + "login": "thefyk", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/11/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/11", + "id": 42690927, + "number": 11, + "title": "This is Michael Fyk", + "user": { + "login": "thefyk", + "id": 5141248, + "avatar_url": "https://avatars.githubusercontent.com/u/5141248?v=2", + "gravatar_id": "9cf970ea29f578484760c52b38da650e", + "url": "https://api.github.com/users/thefyk", + "html_url": "https://github.com/thefyk", + "followers_url": "https://api.github.com/users/thefyk/followers", + "following_url": "https://api.github.com/users/thefyk/following{/other_user}", + "gists_url": "https://api.github.com/users/thefyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thefyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thefyk/subscriptions", + "organizations_url": "https://api.github.com/users/thefyk/orgs", + "repos_url": "https://api.github.com/users/thefyk/repos", + "events_url": "https://api.github.com/users/thefyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/thefyk/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-13T09:13:42Z", + "updated_at": "2014-09-13T09:13:42Z", + "closed_at": null, + "body": "I had coffee for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-13T09:13:43Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285868467", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/9", + "id": 42670443, + "number": 9, + "title": "move this to closed.", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T21:03:51Z", + "updated_at": "2014-09-12T21:04:02Z", + "closed_at": "2014-09-12T21:04:02Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T21:04:02Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285868130", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/9", + "id": 42670443, + "number": 9, + "title": "move this to closed.", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T21:03:51Z", + "updated_at": "2014-09-12T21:03:51Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T21:03:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285847092", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/7", + "id": 42669362, + "number": 7, + "title": "this is another test", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T20:51:01Z", + "updated_at": "2014-09-12T20:52:48Z", + "closed_at": "2014-09-12T20:52:48Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T20:52:48Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285847035", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/8", + "id": 42669394, + "number": 8, + "title": "testing again", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T20:51:27Z", + "updated_at": "2014-09-12T20:52:46Z", + "closed_at": "2014-09-12T20:52:46Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T20:52:46Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285846631", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/2", + "id": 42656506, + "number": 2, + "title": "pinMode( ), why do we set pin 8 and 10 to output?", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-12T18:24:17Z", + "updated_at": "2014-09-12T20:52:32Z", + "closed_at": null, + "body": "When we use pinMode( ), why do we set pin 8 and 10 to output? I didn't think we used either of those pins, unless I'm not understanding what is referred to as a \"pin\"." + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/55459179", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/2#issuecomment-55459179", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2", + "id": 55459179, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-12T20:52:32Z", + "updated_at": "2014-09-12T20:52:32Z", + "body": "We set those to output so that we guarantee both are on and being sent voltage by arduino's internal supply. If one of those doesn't turn on the SD doesn't turn on so this is just a guarantee." + } + }, + "public": true, + "created_at": "2014-09-12T20:52:34Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285844599", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/8/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/8", + "id": 42669394, + "number": 8, + "title": "testing again", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T20:51:27Z", + "updated_at": "2014-09-12T20:51:27Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T20:51:27Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285843788", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/7", + "id": 42669362, + "number": 7, + "title": "this is another test", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T20:51:01Z", + "updated_at": "2014-09-12T20:51:01Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T20:51:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285841305", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/6", + "id": 42669103, + "number": 6, + "title": "This is a test", + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T20:48:23Z", + "updated_at": "2014-09-12T20:49:45Z", + "closed_at": "2014-09-12T20:49:45Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T20:49:45Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285838752", + "type": "IssuesEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/6", + "id": 42669103, + "number": 6, + "title": "This is a test", + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T20:48:23Z", + "updated_at": "2014-09-12T20:48:23Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-12T20:48:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285572422", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/5", + "id": 42656665, + "number": 5, + "title": "Using external libraries", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T18:26:20Z", + "updated_at": "2014-09-12T18:26:20Z", + "closed_at": null, + "body": "I am trying to use a separate library to keep track of time for the values, but when I include the `Time.h` file in my source code, it won't let me use any functions from the library. I have looked up documentation for including external libraries and haven't gotten anywhere. Could you help me out getting it sorted out:\r\n(http://playground.arduino.cc/Code/Time)" + } + }, + "public": true, + "created_at": "2014-09-12T18:26:20Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285570526", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/4", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/4/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/4/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/4", + "id": 42656587, + "number": 4, + "title": "dtostrf(runavg, 1, 2, sound)", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T18:25:19Z", + "updated_at": "2014-09-12T18:25:19Z", + "closed_at": null, + "body": "From what I can tell, dtostrf(runavg, 1, 2, sound) converts a float (runavg) to a string of length (1) with precision (2) and stores it in an array (sound). I'm confused why `1` is the second argument here. The string is not of length 1, is it?" + } + }, + "public": true, + "created_at": "2014-09-12T18:25:19Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285569644", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/3", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/3/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/3/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/3", + "id": 42656552, + "number": 3, + "title": "Calculating the average by squaring each recording", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T18:24:51Z", + "updated_at": "2014-09-12T18:24:51Z", + "closed_at": null, + "body": "Why are we calculating the average by squaring each recording, dividing by the total number of samples, and then sqrt( ) that? Why can't we run a linear averaging method? What is the benefit to squaring each value?\r\n" + } + }, + "public": true, + "created_at": "2014-09-12T18:24:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285568564", + "type": "IssuesEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/2/events", + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/issues/2", + "id": 42656506, + "number": 2, + "title": "pinMode( ), why do we set pin 8 and 10 to output?", + "user": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T18:24:17Z", + "updated_at": "2014-09-12T18:24:17Z", + "closed_at": null, + "body": "When we use pinMode( ), why do we set pin 8 and 10 to output? I didn't think we used either of those pins, unless I'm not understanding what is referred to as a \"pin\"." + } + }, + "public": true, + "created_at": "2014-09-12T18:24:17Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2285466017", + "type": "ForkEvent", + "actor": { + "id": 8550840, + "login": "dano8957", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 23970095, + "name": "challenge-week-3", + "full_name": "dano8957/challenge-week-3", + "owner": { + "login": "dano8957", + "id": 8550840, + "avatar_url": "https://avatars.githubusercontent.com/u/8550840?v=2", + "gravatar_id": "8566b8511d01a060ad6efb9c4bb1b0cf", + "url": "https://api.github.com/users/dano8957", + "html_url": "https://github.com/dano8957", + "followers_url": "https://api.github.com/users/dano8957/followers", + "following_url": "https://api.github.com/users/dano8957/following{/other_user}", + "gists_url": "https://api.github.com/users/dano8957/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dano8957/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dano8957/subscriptions", + "organizations_url": "https://api.github.com/users/dano8957/orgs", + "repos_url": "https://api.github.com/users/dano8957/repos", + "events_url": "https://api.github.com/users/dano8957/events{/privacy}", + "received_events_url": "https://api.github.com/users/dano8957/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dano8957/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dano8957/challenge-week-3", + "forks_url": "https://api.github.com/repos/dano8957/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/dano8957/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dano8957/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dano8957/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/dano8957/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/dano8957/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/dano8957/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/dano8957/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/dano8957/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/dano8957/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dano8957/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dano8957/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/dano8957/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/dano8957/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/dano8957/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/dano8957/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/dano8957/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dano8957/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dano8957/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dano8957/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dano8957/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/dano8957/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dano8957/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/dano8957/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dano8957/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/dano8957/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/dano8957/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dano8957/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dano8957/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dano8957/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/dano8957/challenge-week-3/releases{/id}", + "created_at": "2014-09-12T17:31:06Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/dano8957/challenge-week-3.git", + "ssh_url": "git@github.com:dano8957/challenge-week-3.git", + "clone_url": "https://github.com/dano8957/challenge-week-3.git", + "svn_url": "https://github.com/dano8957/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-12T17:31:06Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2284294693", + "type": "IssueCommentEvent", + "actor": { + "id": 3197428, + "login": "wannabeCitizen", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 42585116, + "number": 10, + "title": "No Twitter Account", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-12T00:22:02Z", + "updated_at": "2014-09-12T05:14:08Z", + "closed_at": null, + "body": "I don't have a Twitter account, and after seeing the first few minutes of the tutorial, it looks like I need to make one. Is this the case?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55362327", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10#issuecomment-55362327", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 55362327, + "user": { + "login": "wannabeCitizen", + "id": 3197428, + "avatar_url": "https://avatars.githubusercontent.com/u/3197428?v=2", + "gravatar_id": "f04b819c6c90634bdf93574c16e916b9", + "url": "https://api.github.com/users/wannabeCitizen", + "html_url": "https://github.com/wannabeCitizen", + "followers_url": "https://api.github.com/users/wannabeCitizen/followers", + "following_url": "https://api.github.com/users/wannabeCitizen/following{/other_user}", + "gists_url": "https://api.github.com/users/wannabeCitizen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wannabeCitizen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wannabeCitizen/subscriptions", + "organizations_url": "https://api.github.com/users/wannabeCitizen/orgs", + "repos_url": "https://api.github.com/users/wannabeCitizen/repos", + "events_url": "https://api.github.com/users/wannabeCitizen/events{/privacy}", + "received_events_url": "https://api.github.com/users/wannabeCitizen/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-12T05:14:08Z", + "updated_at": "2014-09-12T05:14:08Z", + "body": "If you don't want a real Twitter account, then do what I did and make a fake one that follows loads of people and can be used for data collection." + } + }, + "public": true, + "created_at": "2014-09-12T05:14:08Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2284166762", + "type": "IssuesEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 42580284, + "number": 9, + "title": "Getting Data into a Form Splunk Can Recognize", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-11T22:57:47Z", + "updated_at": "2014-09-12T02:42:35Z", + "closed_at": "2014-09-12T02:42:35Z", + "body": "I have a question about challenge 1a for Splunk(III). For the field that we have to get right for the time stamp, is that one of the fields in the .json file that we got from Github? I've tried a lot of those fields, including multiple fields at once, and none of them have worked. " + } + }, + "public": true, + "created_at": "2014-09-12T02:42:37Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2284166761", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 42580284, + "number": 9, + "title": "Getting Data into a Form Splunk Can Recognize", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-11T22:57:47Z", + "updated_at": "2014-09-12T02:42:35Z", + "closed_at": "2014-09-12T02:42:35Z", + "body": "I have a question about challenge 1a for Splunk(III). For the field that we have to get right for the time stamp, is that one of the fields in the .json file that we got from Github? I've tried a lot of those fields, including multiple fields at once, and none of them have worked. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55355413", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9#issuecomment-55355413", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 55355413, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-12T02:42:35Z", + "updated_at": "2014-09-12T02:42:35Z", + "body": "It sounds like you have resolved the issue." + } + }, + "public": true, + "created_at": "2014-09-12T02:42:37Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2284039785", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 42585116, + "number": 10, + "title": "No Twitter Account", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-12T00:22:02Z", + "updated_at": "2014-09-12T00:36:26Z", + "closed_at": null, + "body": "I don't have a Twitter account, and after seeing the first few minutes of the tutorial, it looks like I need to make one. Is this the case?" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55348106", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10#issuecomment-55348106", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 55348106, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-12T00:36:26Z", + "updated_at": "2014-09-12T00:36:26Z", + "body": "Yes. Its time to create one. It will be needed later in the semester.\r\nOn Thu, Sep 11, 2014 at 6:22 PM, Dawson Botsford <notifications@github.com> wrote:I don't have a Twitter account, and after seeing the first few minutes of the tutorial, it looks like I need to make one. Is this the case?\r\n\r\n—Reply to this email directly or view it on GitHub." + } + }, + "public": true, + "created_at": "2014-09-12T00:36:26Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2284023349", + "type": "IssuesEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/10/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/10", + "id": 42585116, + "number": 10, + "title": "No Twitter Account", + "user": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-12T00:22:02Z", + "updated_at": "2014-09-12T00:22:02Z", + "closed_at": null, + "body": "I don't have a Twitter account, and after seeing the first few minutes of the tutorial, it looks like I need to make one. Is this the case?" + } + }, + "public": true, + "created_at": "2014-09-12T00:22:02Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2284013337", + "type": "ForkEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 23940540, + "name": "challenge-week-3", + "full_name": "dawsonbotsford/challenge-week-3", + "owner": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dawsonbotsford/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3", + "forks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/dawsonbotsford/challenge-week-3/releases{/id}", + "created_at": "2014-09-12T00:13:30Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/dawsonbotsford/challenge-week-3.git", + "ssh_url": "git@github.com:dawsonbotsford/challenge-week-3.git", + "clone_url": "https://github.com/dawsonbotsford/challenge-week-3.git", + "svn_url": "https://github.com/dawsonbotsford/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-12T00:13:30Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2284004125", + "type": "ForkEvent", + "actor": { + "id": 3408480, + "login": "dawsonbotsford", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 23940373, + "name": "project-1-make-a", + "full_name": "dawsonbotsford/project-1-make-a", + "owner": { + "login": "dawsonbotsford", + "id": 3408480, + "avatar_url": "https://avatars.githubusercontent.com/u/3408480?v=2", + "gravatar_id": "5f66f56cae930eb9ab2cd9e62b8285e6", + "url": "https://api.github.com/users/dawsonbotsford", + "html_url": "https://github.com/dawsonbotsford", + "followers_url": "https://api.github.com/users/dawsonbotsford/followers", + "following_url": "https://api.github.com/users/dawsonbotsford/following{/other_user}", + "gists_url": "https://api.github.com/users/dawsonbotsford/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dawsonbotsford/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dawsonbotsford/subscriptions", + "organizations_url": "https://api.github.com/users/dawsonbotsford/orgs", + "repos_url": "https://api.github.com/users/dawsonbotsford/repos", + "events_url": "https://api.github.com/users/dawsonbotsford/events{/privacy}", + "received_events_url": "https://api.github.com/users/dawsonbotsford/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dawsonbotsford/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a", + "forks_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/dawsonbotsford/project-1-make-a/releases{/id}", + "created_at": "2014-09-12T00:05:54Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/dawsonbotsford/project-1-make-a.git", + "ssh_url": "git@github.com:dawsonbotsford/project-1-make-a.git", + "clone_url": "https://github.com/dawsonbotsford/project-1-make-a.git", + "svn_url": "https://github.com/dawsonbotsford/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-12T00:05:56Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283954471", + "type": "IssueCommentEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 42580284, + "number": 9, + "title": "Getting Data into a Form Splunk Can Recognize", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-11T22:57:47Z", + "updated_at": "2014-09-11T23:28:00Z", + "closed_at": null, + "body": "I have a question about challenge 1a for Splunk(III). For the field that we have to get right for the time stamp, is that one of the fields in the .json file that we got from Github? I've tried a lot of those fields, including multiple fields at once, and none of them have worked. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55343352", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9#issuecomment-55343352", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 55343352, + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-11T23:28:00Z", + "updated_at": "2014-09-11T23:28:00Z", + "body": "id, type, actor (I have tried them separately and together)." + } + }, + "public": true, + "created_at": "2014-09-11T23:28:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283924250", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 42580284, + "number": 9, + "title": "Getting Data into a Form Splunk Can Recognize", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-11T22:57:47Z", + "updated_at": "2014-09-11T23:05:50Z", + "closed_at": null, + "body": "I have a question about challenge 1a for Splunk(III). For the field that we have to get right for the time stamp, is that one of the fields in the .json file that we got from Github? I've tried a lot of those fields, including multiple fields at once, and none of them have worked. " + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55341602", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9#issuecomment-55341602", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 55341602, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-11T23:05:50Z", + "updated_at": "2014-09-11T23:05:50Z", + "body": "What fields have you tried?\r\nOn Thu, Sep 11, 2014 at 4:57 PM, cwitty1919 <notifications@github.com> wrote:I have a question about challenge 1a for Splunk(III). For the field that we have to get right for the time stamp, is that one of the fields in the .json file that we got from Github? I've tried a lot of those fields, including multiple fields at once, and none of them have worked. \r\n\r\n—Reply to this email directly or view it on GitHub." + } + }, + "public": true, + "created_at": "2014-09-11T23:05:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283912260", + "type": "IssuesEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/9/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/9", + "id": 42580284, + "number": 9, + "title": "Getting Data into a Form Splunk Can Recognize", + "user": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T22:57:47Z", + "updated_at": "2014-09-11T22:57:47Z", + "closed_at": null, + "body": "I have a question about challenge 1a for Splunk(III). For the field that we have to get right for the time stamp, is that one of the fields in the .json file that we got from Github? I've tried a lot of those fields, including multiple fields at once, and none of them have worked. " + } + }, + "public": true, + "created_at": "2014-09-11T22:57:47Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283883638", + "type": "ForkEvent", + "actor": { + "id": 8551620, + "login": "cwitty1919", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 23938388, + "name": "challenge-week-3", + "full_name": "cwitty1919/challenge-week-3", + "owner": { + "login": "cwitty1919", + "id": 8551620, + "avatar_url": "https://avatars.githubusercontent.com/u/8551620?v=2", + "gravatar_id": "2f7101b95659a4b8959e703add74fa30", + "url": "https://api.github.com/users/cwitty1919", + "html_url": "https://github.com/cwitty1919", + "followers_url": "https://api.github.com/users/cwitty1919/followers", + "following_url": "https://api.github.com/users/cwitty1919/following{/other_user}", + "gists_url": "https://api.github.com/users/cwitty1919/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cwitty1919/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cwitty1919/subscriptions", + "organizations_url": "https://api.github.com/users/cwitty1919/orgs", + "repos_url": "https://api.github.com/users/cwitty1919/repos", + "events_url": "https://api.github.com/users/cwitty1919/events{/privacy}", + "received_events_url": "https://api.github.com/users/cwitty1919/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/cwitty1919/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/cwitty1919/challenge-week-3", + "forks_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/cwitty1919/challenge-week-3/releases{/id}", + "created_at": "2014-09-11T22:39:11Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/cwitty1919/challenge-week-3.git", + "ssh_url": "git@github.com:cwitty1919/challenge-week-3.git", + "clone_url": "https://github.com/cwitty1919/challenge-week-3.git", + "svn_url": "https://github.com/cwitty1919/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-11T22:39:11Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283856746", + "type": "PullRequestEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "action": "opened", + "number": 1, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/1", + "id": 21121834, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/1", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/1.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/1.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/1", + "number": 1, + "state": "open", + "locked": false, + "title": "Project 1 Make A turn in, Niklas Fejes", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-11T22:22:25Z", + "updated_at": "2014-09-11T22:22:25Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "5b5bc0af2a7e10ff2f18ffbc04d760fd16fa78ba", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/1/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/1/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/1/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/1a22eb5f12febf68d2148d58e2940d78204f9a29", + "head": { + "label": "nfejes:master", + "ref": "master", + "sha": "1a22eb5f12febf68d2148d58e2940d78204f9a29", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23715089, + "name": "project-1-make-a", + "full_name": "nfejes/project-1-make-a", + "owner": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nfejes/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nfejes/project-1-make-a", + "forks_url": "https://api.github.com/repos/nfejes/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/nfejes/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nfejes/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nfejes/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/nfejes/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/nfejes/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/nfejes/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/nfejes/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/nfejes/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/nfejes/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/nfejes/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nfejes/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nfejes/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nfejes/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nfejes/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nfejes/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/nfejes/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/nfejes/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/nfejes/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/nfejes/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/nfejes/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nfejes/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nfejes/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nfejes/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nfejes/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/nfejes/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nfejes/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/nfejes/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nfejes/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/nfejes/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/nfejes/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nfejes/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nfejes/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nfejes/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/nfejes/project-1-make-a/releases{/id}", + "created_at": "2014-09-05T19:11:13Z", + "updated_at": "2014-09-11T04:20:33Z", + "pushed_at": "2014-09-11T22:19:36Z", + "git_url": "git://github.com/nfejes/project-1-make-a.git", + "ssh_url": "git@github.com:nfejes/project-1-make-a.git", + "clone_url": "https://github.com/nfejes/project-1-make-a.git", + "svn_url": "https://github.com/nfejes/project-1-make-a", + "homepage": null, + "size": 55, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "a28234526547e23765c02d91e8106053e06816e4", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23597603, + "name": "project-1-make-a", + "full_name": "CSCI-4830-002-2014/project-1-make-a", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/releases{/id}", + "created_at": "2014-09-02T22:16:21Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-make-a.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Arduino", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "forks_count": 9, + "mirror_url": null, + "open_issues_count": 1, + "forks": 9, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/1" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-make-a/pull/1" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/1" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/issues/1/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/1/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/pulls/1/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a/statuses/1a22eb5f12febf68d2148d58e2940d78204f9a29" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 6, + "additions": 61058, + "deletions": 80, + "changed_files": 5 + } + }, + "public": true, + "created_at": "2014-09-11T22:22:27Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283823468", + "type": "PullRequestEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 8, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/8", + "id": 21120833, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/8", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/8.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/8.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/8", + "number": 8, + "state": "open", + "locked": false, + "title": "Challenge 3 turn in, Niklas Fejes", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-11T22:03:41Z", + "updated_at": "2014-09-11T22:03:41Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/8/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/8/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/8/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/f12ba7e89268d50b16a917b7ccdcf432ee4d5cf9", + "head": { + "label": "nfejes:master", + "ref": "master", + "sha": "f12ba7e89268d50b16a917b7ccdcf432ee4d5cf9", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23903996, + "name": "challenge-week-3", + "full_name": "nfejes/challenge-week-3", + "owner": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nfejes/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/nfejes/challenge-week-3", + "forks_url": "https://api.github.com/repos/nfejes/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/nfejes/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nfejes/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nfejes/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/nfejes/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/nfejes/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/nfejes/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/nfejes/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/nfejes/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/nfejes/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/nfejes/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nfejes/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nfejes/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nfejes/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nfejes/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nfejes/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/nfejes/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/nfejes/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/nfejes/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/nfejes/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/nfejes/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nfejes/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nfejes/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nfejes/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/nfejes/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/nfejes/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nfejes/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/nfejes/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nfejes/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/nfejes/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/nfejes/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nfejes/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nfejes/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nfejes/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/nfejes/challenge-week-3/releases{/id}", + "created_at": "2014-09-11T04:24:22Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T21:58:53Z", + "git_url": "git://github.com/nfejes/challenge-week-3.git", + "ssh_url": "git@github.com:nfejes/challenge-week-3.git", + "clone_url": "https://github.com/nfejes/challenge-week-3.git", + "svn_url": "https://github.com/nfejes/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "forks_count": 5, + "mirror_url": null, + "open_issues_count": 6, + "forks": 5, + "open_issues": 6, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/8" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/8" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/8" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/8/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/8/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/8/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/f12ba7e89268d50b16a917b7ccdcf432ee4d5cf9" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 9, + "additions": 45, + "deletions": 41, + "changed_files": 25 + } + }, + "public": true, + "created_at": "2014-09-11T22:03:41Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283722416", + "type": "ForkEvent", + "actor": { + "id": 7710325, + "login": "dare599z", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 23935938, + "name": "project-1-make-a", + "full_name": "dare599z/project-1-make-a", + "owner": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dare599z/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dare599z/project-1-make-a", + "forks_url": "https://api.github.com/repos/dare599z/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/dare599z/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dare599z/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dare599z/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/dare599z/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/dare599z/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/dare599z/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/dare599z/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/dare599z/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/dare599z/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dare599z/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dare599z/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/dare599z/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/dare599z/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/dare599z/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/dare599z/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/dare599z/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dare599z/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dare599z/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dare599z/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dare599z/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/dare599z/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dare599z/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/dare599z/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dare599z/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/dare599z/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/dare599z/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dare599z/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dare599z/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dare599z/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/dare599z/project-1-make-a/releases{/id}", + "created_at": "2014-09-11T21:12:11Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/dare599z/project-1-make-a.git", + "ssh_url": "git@github.com:dare599z/project-1-make-a.git", + "clone_url": "https://github.com/dare599z/project-1-make-a.git", + "svn_url": "https://github.com/dare599z/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-11T21:12:11Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283585997", + "type": "IssuesEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 42543204, + "number": 7, + "title": "Missing event timestamps for Splunk Challenge 2", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels/question", + "name": "question", + "color": "cc317c" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-11T16:22:35Z", + "updated_at": "2014-09-11T20:09:14Z", + "closed_at": "2014-09-11T20:09:14Z", + "body": "For Splunk Challenge 2, only 179 of the 300 events get their timestamp right. This can be seen by searching `sourcetype=course_github_events |stats count(created_at)`. All events get their timestamp right if `TRUNCATE=0` is added to the *Additional settings (overrides)* under the *Advanced mode (props.conf)* tab when setting up the data source.\r\n" + } + }, + "public": true, + "created_at": "2014-09-11T20:09:14Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283346938", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 42543204, + "number": 7, + "title": "Missing event timestamps for Splunk Challenge 2", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels/question", + "name": "question", + "color": "cc317c" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 3, + "created_at": "2014-09-11T16:22:35Z", + "updated_at": "2014-09-11T18:15:51Z", + "closed_at": null, + "body": "For Splunk Challenge 2, only 179 of the 300 events get their timestamp right. This can be seen by searching `sourcetype=course_github_events |stats count(created_at)`. All events get their timestamp right if `TRUNCATE=0` is added to the *Additional settings (overrides)* under the *Advanced mode (props.conf)* tab when setting up the data source.\r\n" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55305281", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7#issuecomment-55305281", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 55305281, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-11T18:15:51Z", + "updated_at": "2014-09-11T18:15:51Z", + "body": "Yes. You can of course use correct values. It is just not a requirement to keep the challenge simpler." + } + }, + "public": true, + "created_at": "2014-09-11T18:15:52Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283268407", + "type": "IssueCommentEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 42543204, + "number": 7, + "title": "Missing event timestamps for Splunk Challenge 2", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels/question", + "name": "question", + "color": "cc317c" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 2, + "created_at": "2014-09-11T16:22:35Z", + "updated_at": "2014-09-11T17:38:50Z", + "closed_at": null, + "body": "For Splunk Challenge 2, only 179 of the 300 events get their timestamp right. This can be seen by searching `sourcetype=course_github_events |stats count(created_at)`. All events get their timestamp right if `TRUNCATE=0` is added to the *Additional settings (overrides)* under the *Advanced mode (props.conf)* tab when setting up the data source.\r\n" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55300001", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7#issuecomment-55300001", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 55300001, + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-11T17:38:50Z", + "updated_at": "2014-09-11T17:38:50Z", + "body": "Is it okay to use the correct values though? The graphs are somewhat different if you use them." + } + }, + "public": true, + "created_at": "2014-09-11T17:38:50Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283259992", + "type": "ForkEvent", + "actor": { + "id": 3409645, + "login": "indiesquidge", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?" + }, + "repo": { + "id": 23597603, + "name": "CSCI-4830-002-2014/project-1-make-a", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-make-a" + }, + "payload": { + "forkee": { + "id": 23928528, + "name": "project-1-make-a", + "full_name": "indiesquidge/project-1-make-a", + "owner": { + "login": "indiesquidge", + "id": 3409645, + "avatar_url": "https://avatars.githubusercontent.com/u/3409645?v=2", + "gravatar_id": "7859d3e26159735a713fd70ec8dd1b72", + "url": "https://api.github.com/users/indiesquidge", + "html_url": "https://github.com/indiesquidge", + "followers_url": "https://api.github.com/users/indiesquidge/followers", + "following_url": "https://api.github.com/users/indiesquidge/following{/other_user}", + "gists_url": "https://api.github.com/users/indiesquidge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indiesquidge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indiesquidge/subscriptions", + "organizations_url": "https://api.github.com/users/indiesquidge/orgs", + "repos_url": "https://api.github.com/users/indiesquidge/repos", + "events_url": "https://api.github.com/users/indiesquidge/events{/privacy}", + "received_events_url": "https://api.github.com/users/indiesquidge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/indiesquidge/project-1-make-a", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/indiesquidge/project-1-make-a", + "forks_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/forks", + "keys_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/teams", + "hooks_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/hooks", + "issue_events_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/issues/events{/number}", + "events_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/events", + "assignees_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/assignees{/user}", + "branches_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/branches{/branch}", + "tags_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/tags", + "blobs_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/statuses/{sha}", + "languages_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/languages", + "stargazers_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/stargazers", + "contributors_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/contributors", + "subscribers_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/subscribers", + "subscription_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/subscription", + "commits_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/contents/{+path}", + "compare_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/merges", + "archive_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/downloads", + "issues_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/issues{/number}", + "pulls_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/pulls{/number}", + "milestones_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/milestones{/number}", + "notifications_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/labels{/name}", + "releases_url": "https://api.github.com/repos/indiesquidge/project-1-make-a/releases{/id}", + "created_at": "2014-09-11T17:34:41Z", + "updated_at": "2014-09-03T17:36:40Z", + "pushed_at": "2014-09-07T22:10:07Z", + "git_url": "git://github.com/indiesquidge/project-1-make-a.git", + "ssh_url": "git@github.com:indiesquidge/project-1-make-a.git", + "clone_url": "https://github.com/indiesquidge/project-1-make-a.git", + "svn_url": "https://github.com/indiesquidge/project-1-make-a", + "homepage": null, + "size": 135, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-11T17:34:41Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283209613", + "type": "PullRequestEvent", + "actor": { + "id": 3361094, + "login": "masi8397", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?" + }, + "repo": { + "id": 23325681, + "name": "CSCI-4830-002-2014/project-1-proposal", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal" + }, + "payload": { + "action": "opened", + "number": 20, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/20", + "id": 21102561, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-proposal/pull/20", + "diff_url": "https://github.com/CSCI-4830-002-2014/project-1-proposal/pull/20.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/project-1-proposal/pull/20.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/20", + "number": 20, + "state": "open", + "locked": false, + "title": "MarcSimpson_ProjectPurposal.md", + "user": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-11T17:10:01Z", + "updated_at": "2014-09-11T17:10:01Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/20/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/20/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/20/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/statuses/63b1f5c3529c2cd805c0d3fee1f50d18929d860d", + "head": { + "label": "masi8397:master", + "ref": "master", + "sha": "63b1f5c3529c2cd805c0d3fee1f50d18929d860d", + "user": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23927470, + "name": "project-1-proposal", + "full_name": "masi8397/project-1-proposal", + "owner": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/masi8397/project-1-proposal", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/masi8397/project-1-proposal", + "forks_url": "https://api.github.com/repos/masi8397/project-1-proposal/forks", + "keys_url": "https://api.github.com/repos/masi8397/project-1-proposal/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/masi8397/project-1-proposal/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/masi8397/project-1-proposal/teams", + "hooks_url": "https://api.github.com/repos/masi8397/project-1-proposal/hooks", + "issue_events_url": "https://api.github.com/repos/masi8397/project-1-proposal/issues/events{/number}", + "events_url": "https://api.github.com/repos/masi8397/project-1-proposal/events", + "assignees_url": "https://api.github.com/repos/masi8397/project-1-proposal/assignees{/user}", + "branches_url": "https://api.github.com/repos/masi8397/project-1-proposal/branches{/branch}", + "tags_url": "https://api.github.com/repos/masi8397/project-1-proposal/tags", + "blobs_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/masi8397/project-1-proposal/statuses/{sha}", + "languages_url": "https://api.github.com/repos/masi8397/project-1-proposal/languages", + "stargazers_url": "https://api.github.com/repos/masi8397/project-1-proposal/stargazers", + "contributors_url": "https://api.github.com/repos/masi8397/project-1-proposal/contributors", + "subscribers_url": "https://api.github.com/repos/masi8397/project-1-proposal/subscribers", + "subscription_url": "https://api.github.com/repos/masi8397/project-1-proposal/subscription", + "commits_url": "https://api.github.com/repos/masi8397/project-1-proposal/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/masi8397/project-1-proposal/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/masi8397/project-1-proposal/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/masi8397/project-1-proposal/contents/{+path}", + "compare_url": "https://api.github.com/repos/masi8397/project-1-proposal/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/masi8397/project-1-proposal/merges", + "archive_url": "https://api.github.com/repos/masi8397/project-1-proposal/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/masi8397/project-1-proposal/downloads", + "issues_url": "https://api.github.com/repos/masi8397/project-1-proposal/issues{/number}", + "pulls_url": "https://api.github.com/repos/masi8397/project-1-proposal/pulls{/number}", + "milestones_url": "https://api.github.com/repos/masi8397/project-1-proposal/milestones{/number}", + "notifications_url": "https://api.github.com/repos/masi8397/project-1-proposal/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/masi8397/project-1-proposal/labels{/name}", + "releases_url": "https://api.github.com/repos/masi8397/project-1-proposal/releases{/id}", + "created_at": "2014-09-11T17:03:01Z", + "updated_at": "2014-08-25T19:22:31Z", + "pushed_at": "2014-09-11T17:08:16Z", + "git_url": "git://github.com/masi8397/project-1-proposal.git", + "ssh_url": "git@github.com:masi8397/project-1-proposal.git", + "clone_url": "https://github.com/masi8397/project-1-proposal.git", + "svn_url": "https://github.com/masi8397/project-1-proposal", + "homepage": null, + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "f1842eb79565f34824bc3d3150def7cd2f1e8c4b", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23325681, + "name": "project-1-proposal", + "full_name": "CSCI-4830-002-2014/project-1-proposal", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/project-1-proposal", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/releases{/id}", + "created_at": "2014-08-25T19:22:31Z", + "updated_at": "2014-08-25T19:22:31Z", + "pushed_at": "2014-08-25T19:24:06Z", + "git_url": "git://github.com/CSCI-4830-002-2014/project-1-proposal.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/project-1-proposal.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/project-1-proposal.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/project-1-proposal", + "homepage": null, + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "forks_count": 23, + "mirror_url": null, + "open_issues_count": 20, + "forks": 23, + "open_issues": 20, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/20" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/project-1-proposal/pull/20" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/20" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/issues/20/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/20/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/pulls/20/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal/statuses/63b1f5c3529c2cd805c0d3fee1f50d18929d860d" + } + }, + "merged": false, + "mergeable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 1, + "additions": 6, + "deletions": 6, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2014-09-11T17:10:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283195874", + "type": "ForkEvent", + "actor": { + "id": 3361094, + "login": "masi8397", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?" + }, + "repo": { + "id": 23325681, + "name": "CSCI-4830-002-2014/project-1-proposal", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/project-1-proposal" + }, + "payload": { + "forkee": { + "id": 23927470, + "name": "project-1-proposal", + "full_name": "masi8397/project-1-proposal", + "owner": { + "login": "masi8397", + "id": 3361094, + "avatar_url": "https://avatars.githubusercontent.com/u/3361094?v=2", + "gravatar_id": "c5ccc8469a263e5af6276bae1b6ae442", + "url": "https://api.github.com/users/masi8397", + "html_url": "https://github.com/masi8397", + "followers_url": "https://api.github.com/users/masi8397/followers", + "following_url": "https://api.github.com/users/masi8397/following{/other_user}", + "gists_url": "https://api.github.com/users/masi8397/gists{/gist_id}", + "starred_url": "https://api.github.com/users/masi8397/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/masi8397/subscriptions", + "organizations_url": "https://api.github.com/users/masi8397/orgs", + "repos_url": "https://api.github.com/users/masi8397/repos", + "events_url": "https://api.github.com/users/masi8397/events{/privacy}", + "received_events_url": "https://api.github.com/users/masi8397/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/masi8397/project-1-proposal", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/masi8397/project-1-proposal", + "forks_url": "https://api.github.com/repos/masi8397/project-1-proposal/forks", + "keys_url": "https://api.github.com/repos/masi8397/project-1-proposal/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/masi8397/project-1-proposal/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/masi8397/project-1-proposal/teams", + "hooks_url": "https://api.github.com/repos/masi8397/project-1-proposal/hooks", + "issue_events_url": "https://api.github.com/repos/masi8397/project-1-proposal/issues/events{/number}", + "events_url": "https://api.github.com/repos/masi8397/project-1-proposal/events", + "assignees_url": "https://api.github.com/repos/masi8397/project-1-proposal/assignees{/user}", + "branches_url": "https://api.github.com/repos/masi8397/project-1-proposal/branches{/branch}", + "tags_url": "https://api.github.com/repos/masi8397/project-1-proposal/tags", + "blobs_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/masi8397/project-1-proposal/statuses/{sha}", + "languages_url": "https://api.github.com/repos/masi8397/project-1-proposal/languages", + "stargazers_url": "https://api.github.com/repos/masi8397/project-1-proposal/stargazers", + "contributors_url": "https://api.github.com/repos/masi8397/project-1-proposal/contributors", + "subscribers_url": "https://api.github.com/repos/masi8397/project-1-proposal/subscribers", + "subscription_url": "https://api.github.com/repos/masi8397/project-1-proposal/subscription", + "commits_url": "https://api.github.com/repos/masi8397/project-1-proposal/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/masi8397/project-1-proposal/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/masi8397/project-1-proposal/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/masi8397/project-1-proposal/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/masi8397/project-1-proposal/contents/{+path}", + "compare_url": "https://api.github.com/repos/masi8397/project-1-proposal/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/masi8397/project-1-proposal/merges", + "archive_url": "https://api.github.com/repos/masi8397/project-1-proposal/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/masi8397/project-1-proposal/downloads", + "issues_url": "https://api.github.com/repos/masi8397/project-1-proposal/issues{/number}", + "pulls_url": "https://api.github.com/repos/masi8397/project-1-proposal/pulls{/number}", + "milestones_url": "https://api.github.com/repos/masi8397/project-1-proposal/milestones{/number}", + "notifications_url": "https://api.github.com/repos/masi8397/project-1-proposal/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/masi8397/project-1-proposal/labels{/name}", + "releases_url": "https://api.github.com/repos/masi8397/project-1-proposal/releases{/id}", + "created_at": "2014-09-11T17:03:01Z", + "updated_at": "2014-08-25T19:22:31Z", + "pushed_at": "2014-08-25T19:24:06Z", + "git_url": "git://github.com/masi8397/project-1-proposal.git", + "ssh_url": "git@github.com:masi8397/project-1-proposal.git", + "clone_url": "https://github.com/masi8397/project-1-proposal.git", + "svn_url": "https://github.com/masi8397/project-1-proposal", + "homepage": null, + "size": 214, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-11T17:03:01Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283116217", + "type": "IssueCommentEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 42543204, + "number": 7, + "title": "Missing event timestamps for Splunk Challenge 2", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels/question", + "name": "question", + "color": "cc317c" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 1, + "created_at": "2014-09-11T16:22:35Z", + "updated_at": "2014-09-11T16:24:08Z", + "closed_at": null, + "body": "For Splunk Challenge 2, only 179 of the 300 events get their timestamp right. This can be seen by searching `sourcetype=course_github_events |stats count(created_at)`. All events get their timestamp right if `TRUNCATE=0` is added to the *Additional settings (overrides)* under the *Advanced mode (props.conf)* tab when setting up the data source.\r\n" + }, + "comment": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/55289648", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7#issuecomment-55289648", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 55289648, + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2014-09-11T16:24:08Z", + "updated_at": "2014-09-11T16:24:08Z", + "body": "It's okay some events don't get their timestamps right. By default it will use the timestamp from the previous event." + } + }, + "public": true, + "created_at": "2014-09-11T16:24:08Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283112888", + "type": "IssuesEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/7/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/7", + "id": 42543204, + "number": 7, + "title": "Missing event timestamps for Splunk Challenge 2", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T16:22:35Z", + "updated_at": "2014-09-11T16:22:35Z", + "closed_at": null, + "body": "For Splunk Challenge 2, only 179 of the 300 events get their timestamp right. This can be seen by searching `sourcetype=course_github_events |stats count(created_at)`. All events get their timestamp right if `TRUNCATE=0` is added to the *Additional settings (overrides)* under the *Advanced mode (props.conf)* tab when setting up the data source.\r\n" + } + }, + "public": true, + "created_at": "2014-09-11T16:22:36Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283092204", + "type": "ForkEvent", + "actor": { + "id": 2533512, + "login": "antsankov", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 23925676, + "name": "challenge-week-3", + "full_name": "antsankov/challenge-week-3", + "owner": { + "login": "antsankov", + "id": 2533512, + "avatar_url": "https://avatars.githubusercontent.com/u/2533512?v=2", + "gravatar_id": "d96591fea9a411a98b31e40485669d7f", + "url": "https://api.github.com/users/antsankov", + "html_url": "https://github.com/antsankov", + "followers_url": "https://api.github.com/users/antsankov/followers", + "following_url": "https://api.github.com/users/antsankov/following{/other_user}", + "gists_url": "https://api.github.com/users/antsankov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/antsankov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/antsankov/subscriptions", + "organizations_url": "https://api.github.com/users/antsankov/orgs", + "repos_url": "https://api.github.com/users/antsankov/repos", + "events_url": "https://api.github.com/users/antsankov/events{/privacy}", + "received_events_url": "https://api.github.com/users/antsankov/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/antsankov/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/antsankov/challenge-week-3", + "forks_url": "https://api.github.com/repos/antsankov/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/antsankov/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/antsankov/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/antsankov/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/antsankov/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/antsankov/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/antsankov/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/antsankov/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/antsankov/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/antsankov/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/antsankov/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/antsankov/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/antsankov/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/antsankov/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/antsankov/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/antsankov/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/antsankov/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/antsankov/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/antsankov/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/antsankov/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/antsankov/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/antsankov/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/antsankov/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/antsankov/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/antsankov/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/antsankov/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/antsankov/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/antsankov/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/antsankov/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/antsankov/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/antsankov/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/antsankov/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/antsankov/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/antsankov/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/antsankov/challenge-week-3/releases{/id}", + "created_at": "2014-09-11T16:13:02Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-11T15:43:24Z", + "git_url": "git://github.com/antsankov/challenge-week-3.git", + "ssh_url": "git@github.com:antsankov/challenge-week-3.git", + "clone_url": "https://github.com/antsankov/challenge-week-3.git", + "svn_url": "https://github.com/antsankov/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-11T16:13:03Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2283022744", + "type": "PushEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "push_id": 449288040, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/master", + "head": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "before": "b59e89ecdd34857a8708b2f0f91654236b2587dc", + "commits": [ + { + "sha": "295e66f3d864347d7c84ca594c5e5a1e4efcc033", + "author": { + "email": "doubleshow@gmail.com", + "name": "doubleshow" + }, + "message": "Update README.md", + "distinct": true, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits/295e66f3d864347d7c84ca594c5e5a1e4efcc033" + } + ] + }, + "public": true, + "created_at": "2014-09-11T15:43:24Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2282758858", + "type": "IssuesEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/6", + "id": 42525929, + "number": 6, + "title": "This is a test question that has been addressed (done).", + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T13:52:03Z", + "updated_at": "2014-09-11T13:52:10Z", + "closed_at": "2014-09-11T13:52:10Z", + "body": null + } + }, + "public": true, + "created_at": "2014-09-11T13:52:10Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2282758611", + "type": "IssuesEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/6/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/6", + "id": 42525929, + "number": 6, + "title": "This is a test question that has been addressed (done).", + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T13:52:03Z", + "updated_at": "2014-09-11T13:52:03Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-11T13:52:03Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2282755126", + "type": "IssuesEvent", + "actor": { + "id": 129562, + "login": "doubleshow", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "avatar_url": "https://avatars.githubusercontent.com/u/129562?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/5/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/5", + "id": 42525739, + "number": 5, + "title": "This is a test question", + "user": { + "login": "doubleshow", + "id": 129562, + "avatar_url": "https://avatars.githubusercontent.com/u/129562?v=2", + "gravatar_id": "fd560523056cc1f20d64b172df704748", + "url": "https://api.github.com/users/doubleshow", + "html_url": "https://github.com/doubleshow", + "followers_url": "https://api.github.com/users/doubleshow/followers", + "following_url": "https://api.github.com/users/doubleshow/following{/other_user}", + "gists_url": "https://api.github.com/users/doubleshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/doubleshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/doubleshow/subscriptions", + "organizations_url": "https://api.github.com/users/doubleshow/orgs", + "repos_url": "https://api.github.com/users/doubleshow/repos", + "events_url": "https://api.github.com/users/doubleshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/doubleshow/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T13:50:28Z", + "updated_at": "2014-09-11T13:50:28Z", + "closed_at": null, + "body": null + } + }, + "public": true, + "created_at": "2014-09-11T13:50:29Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2282127989", + "type": "PullRequestEvent", + "actor": { + "id": 7710325, + "login": "dare599z", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "number": 4, + "pull_request": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/4", + "id": 21069933, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/4", + "diff_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/4.diff", + "patch_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/4.patch", + "issue_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/4", + "number": 4, + "state": "open", + "locked": false, + "title": "Finished -- Justin McBride", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "body": "", + "created_at": "2014-09-11T07:07:50Z", + "updated_at": "2014-09-11T07:07:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "dcc359d7671c16852d977c9667f6ab80ce7093cb", + "assignee": null, + "milestone": null, + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/4/commits", + "review_comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/4/comments", + "review_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/4/comments", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/74dfdf35d970def1cf48f16d58bf46769980e290", + "head": { + "label": "dare599z:master", + "ref": "master", + "sha": "74dfdf35d970def1cf48f16d58bf46769980e290", + "user": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 23895228, + "name": "challenge-week-3", + "full_name": "dare599z/challenge-week-3", + "owner": { + "login": "dare599z", + "id": 7710325, + "avatar_url": "https://avatars.githubusercontent.com/u/7710325?v=2", + "gravatar_id": "1e32f7ca7dbe13b4e472dd092c46f26d", + "url": "https://api.github.com/users/dare599z", + "html_url": "https://github.com/dare599z", + "followers_url": "https://api.github.com/users/dare599z/followers", + "following_url": "https://api.github.com/users/dare599z/following{/other_user}", + "gists_url": "https://api.github.com/users/dare599z/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dare599z/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dare599z/subscriptions", + "organizations_url": "https://api.github.com/users/dare599z/orgs", + "repos_url": "https://api.github.com/users/dare599z/repos", + "events_url": "https://api.github.com/users/dare599z/events{/privacy}", + "received_events_url": "https://api.github.com/users/dare599z/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dare599z/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/dare599z/challenge-week-3", + "forks_url": "https://api.github.com/repos/dare599z/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/dare599z/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dare599z/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dare599z/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/dare599z/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/dare599z/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/dare599z/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/dare599z/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/dare599z/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/dare599z/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/dare599z/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dare599z/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dare599z/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dare599z/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dare599z/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dare599z/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/dare599z/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/dare599z/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/dare599z/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/dare599z/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/dare599z/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dare599z/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dare599z/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dare599z/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/dare599z/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/dare599z/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dare599z/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/dare599z/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dare599z/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/dare599z/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/dare599z/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dare599z/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dare599z/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dare599z/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/dare599z/challenge-week-3/releases{/id}", + "created_at": "2014-09-10T22:46:19Z", + "updated_at": "2014-09-11T06:56:16Z", + "pushed_at": "2014-09-11T07:05:27Z", + "git_url": "git://github.com/dare599z/challenge-week-3.git", + "ssh_url": "git@github.com:dare599z/challenge-week-3.git", + "clone_url": "https://github.com/dare599z/challenge-week-3.git", + "svn_url": "https://github.com/dare599z/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "CSCI-4830-002-2014:master", + "ref": "master", + "sha": "b59e89ecdd34857a8708b2f0f91654236b2587dc", + "user": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 23832523, + "name": "challenge-week-3", + "full_name": "CSCI-4830-002-2014/challenge-week-3", + "owner": { + "login": "CSCI-4830-002-2014", + "id": 8374562, + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?v=2", + "gravatar_id": null, + "url": "https://api.github.com/users/CSCI-4830-002-2014", + "html_url": "https://github.com/CSCI-4830-002-2014", + "followers_url": "https://api.github.com/users/CSCI-4830-002-2014/followers", + "following_url": "https://api.github.com/users/CSCI-4830-002-2014/following{/other_user}", + "gists_url": "https://api.github.com/users/CSCI-4830-002-2014/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSCI-4830-002-2014/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSCI-4830-002-2014/subscriptions", + "organizations_url": "https://api.github.com/users/CSCI-4830-002-2014/orgs", + "repos_url": "https://api.github.com/users/CSCI-4830-002-2014/repos", + "events_url": "https://api.github.com/users/CSCI-4830-002-2014/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSCI-4830-002-2014/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3", + "forks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/releases{/id}", + "created_at": "2014-09-09T12:29:25Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-10T12:31:07Z", + "git_url": "git://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "ssh_url": "git@github.com:CSCI-4830-002-2014/challenge-week-3.git", + "clone_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3.git", + "svn_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "forks_count": 4, + "mirror_url": null, + "open_issues_count": 4, + "forks": 4, + "open_issues": 4, + "watchers": 0, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/4" + }, + "html": { + "href": "https://github.com/CSCI-4830-002-2014/challenge-week-3/pull/4" + }, + "issue": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/4" + }, + "comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/4/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/4/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/comments/{number}" + }, + "commits": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/pulls/4/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/statuses/74dfdf35d970def1cf48f16d58bf46769980e290" + } + }, + "merged": false, + "mergeable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "commits": 15, + "additions": 39231, + "deletions": 37, + "changed_files": 1276 + } + }, + "public": true, + "created_at": "2014-09-11T07:07:51Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2282106586", + "type": "IssuesEvent", + "actor": { + "id": 8550912, + "login": "nfejes", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3", + "labels_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3/comments", + "events_url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3/issues/3/events", + "html_url": "https://github.com/CSCI-4830-002-2014/challenge-week-3/issues/3", + "id": 42494269, + "number": 3, + "title": "This is Niklas Fejes", + "user": { + "login": "nfejes", + "id": 8550912, + "avatar_url": "https://avatars.githubusercontent.com/u/8550912?v=2", + "gravatar_id": "1aa35115c2d958c6abab5ae39a3277f1", + "url": "https://api.github.com/users/nfejes", + "html_url": "https://github.com/nfejes", + "followers_url": "https://api.github.com/users/nfejes/followers", + "following_url": "https://api.github.com/users/nfejes/following{/other_user}", + "gists_url": "https://api.github.com/users/nfejes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nfejes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nfejes/subscriptions", + "organizations_url": "https://api.github.com/users/nfejes/orgs", + "repos_url": "https://api.github.com/users/nfejes/repos", + "events_url": "https://api.github.com/users/nfejes/events{/privacy}", + "received_events_url": "https://api.github.com/users/nfejes/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "milestone": null, + "comments": 0, + "created_at": "2014-09-11T06:49:10Z", + "updated_at": "2014-09-11T06:49:10Z", + "closed_at": null, + "body": "I ate splunk for breakfast today." + } + }, + "public": true, + "created_at": "2014-09-11T06:49:11Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + }, + { + "id": "2282102163", + "type": "ForkEvent", + "actor": { + "id": 3268911, + "login": "BrianNewsom", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?" + }, + "repo": { + "id": 23832523, + "name": "CSCI-4830-002-2014/challenge-week-3", + "url": "https://api.github.com/repos/CSCI-4830-002-2014/challenge-week-3" + }, + "payload": { + "forkee": { + "id": 23907353, + "name": "challenge-week-3", + "full_name": "BrianNewsom/challenge-week-3", + "owner": { + "login": "BrianNewsom", + "id": 3268911, + "avatar_url": "https://avatars.githubusercontent.com/u/3268911?v=2", + "gravatar_id": "10cb3b420966fe936877535b803cf142", + "url": "https://api.github.com/users/BrianNewsom", + "html_url": "https://github.com/BrianNewsom", + "followers_url": "https://api.github.com/users/BrianNewsom/followers", + "following_url": "https://api.github.com/users/BrianNewsom/following{/other_user}", + "gists_url": "https://api.github.com/users/BrianNewsom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BrianNewsom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BrianNewsom/subscriptions", + "organizations_url": "https://api.github.com/users/BrianNewsom/orgs", + "repos_url": "https://api.github.com/users/BrianNewsom/repos", + "events_url": "https://api.github.com/users/BrianNewsom/events{/privacy}", + "received_events_url": "https://api.github.com/users/BrianNewsom/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BrianNewsom/challenge-week-3", + "description": "", + "fork": true, + "url": "https://api.github.com/repos/BrianNewsom/challenge-week-3", + "forks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/forks", + "keys_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/teams", + "hooks_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/hooks", + "issue_events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/issues/events{/number}", + "events_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/events", + "assignees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/assignees{/user}", + "branches_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/branches{/branch}", + "tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/tags", + "blobs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/languages", + "stargazers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/stargazers", + "contributors_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/contributors", + "subscribers_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/subscribers", + "subscription_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/subscription", + "commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/issues/comments/{number}", + "contents_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/contents/{+path}", + "compare_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/merges", + "archive_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/downloads", + "issues_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/issues{/number}", + "pulls_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/labels{/name}", + "releases_url": "https://api.github.com/repos/BrianNewsom/challenge-week-3/releases{/id}", + "created_at": "2014-09-11T06:45:04Z", + "updated_at": "2014-09-09T12:29:43Z", + "pushed_at": "2014-09-10T12:31:07Z", + "git_url": "git://github.com/BrianNewsom/challenge-week-3.git", + "ssh_url": "git@github.com:BrianNewsom/challenge-week-3.git", + "clone_url": "https://github.com/BrianNewsom/challenge-week-3.git", + "svn_url": "https://github.com/BrianNewsom/challenge-week-3", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "public": true + } + }, + "public": true, + "created_at": "2014-09-11T06:45:04Z", + "org": { + "id": 8374562, + "login": "CSCI-4830-002-2014", + "gravatar_id": null, + "url": "https://api.github.com/orgs/CSCI-4830-002-2014", + "avatar_url": "https://avatars.githubusercontent.com/u/8374562?" + } + } +]