From a033c35cf8b36602f850bfad9dc0ab974ce8c2f0 Mon Sep 17 00:00:00 2001 From: Adam Laycock | Versett Date: Fri, 6 Sep 2019 16:05:25 -0600 Subject: [PATCH] Add pagination to search endpoints --- lib/GitHub.js | 6 +- lib/Requestable.js | 35 +- lib/Search.js | 2 + test/fixtures/search.json | 8967 ++++++++++++++++++++++++++++++++++++- test/search.spec.js | 17 +- 5 files changed, 8999 insertions(+), 28 deletions(-) diff --git a/lib/GitHub.js b/lib/GitHub.js index 7c3ac24c..4f3800a3 100644 --- a/lib/GitHub.js +++ b/lib/GitHub.js @@ -91,11 +91,11 @@ class GitHub { /** * Create a new Search wrapper - * @param {string} query - the query to search for + * @param {Search.Params} searchParameters - the query and other search parameters * @return {Search} */ - search(query) { - return new Search(query, this.__auth, this.__apiBase); + search(searchParameters) { + return new Search(searchParameters, this.__auth, this.__apiBase); } /** diff --git a/lib/Requestable.js b/lib/Requestable.js index 4d6e8d9d..a4756eeb 100644 --- a/lib/Requestable.js +++ b/lib/Requestable.js @@ -235,13 +235,30 @@ class Requestable { * @param {string} path - the path to request * @param {Object} options - the query parameters to include * @param {Requestable.callback} [cb] - the function to receive the data. The returned data will always be an array. - * @param {Object[]} results - the partial results. This argument is intended for internal use only. * @return {Promise} - a promise which will resolve when all pages have been fetched * @deprecated This will be folded into {@link Requestable#_request} in the 2.0 release. */ - _requestAllPages(path, options, cb, results) { - results = results || []; + _requestAllPages(path, options, cb) { + let manualPagination = false; + if (typeof options.page !== 'undefined') { + manualPagination = true; + } + + return this._requestAllPagesHelper(path, options, cb, [], manualPagination); + } + /** + * Perform the logic of fetching multiple pages + * @private + * @param {string} path - the path to request + * @param {Object} options - the query parameters to include + * @param {Requestable.callback} [cb] - the function to receive the data. The returned data will always be an array. + * @param {Object[]} results - the partial results. This argument is intended for internal use only. + * @param {boolean} manualPagination - the flag to decide if multiple pages should be fetched + * @return {Promise} - a promise which will resolve when all pages have been fetched + * @deprecated This will be folded into {@link Requestable#_request} in the 2.0 release. + */ + _requestAllPagesHelper(path, options, cb, results, manualPagination) { return this._request('GET', path, options) .then((response) => { let thisGroup; @@ -256,19 +273,19 @@ class Requestable { results.push(...thisGroup); const nextUrl = getNextPage(response.headers.link); - if(nextUrl) { + if(nextUrl && !manualPagination) { if (!options) { options = {}; } options.page = parseInt( - nextUrl.match(/([&\?]page=[0-9]*)/g) - .shift() - .split('=') - .pop() + nextUrl.match(/([&\?]page=[0-9]*)/g) + .shift() + .split('=') + .pop() ); if (!(options && typeof options.page !== 'number')) { log(`getting next page: ${nextUrl}`); - return this._requestAllPages(nextUrl, options, cb, results); + return this._requestAllPagesHelper(nextUrl, options, cb, results, false); } } diff --git a/lib/Search.js b/lib/Search.js index e0bde4fb..87344cb1 100644 --- a/lib/Search.js +++ b/lib/Search.js @@ -32,6 +32,8 @@ class Search extends Requestable { * @param {string} sort - the sort field, one of `stars`, `forks`, or `updated`. * Default is [best match](https://developer.github.com/v3/search/#ranking-search-results) * @param {string} order - the ordering, either `asc` or `desc` + * @param {number} page - the page number to fetch, for manual pagination + * @param {number} per_page - the number of results to fetch per page, for manual pagination */ /** * Perform a search on the GitHub API diff --git a/test/fixtures/search.json b/test/fixtures/search.json index e87ad025..b557197e 100644 --- a/test/fixtures/search.json +++ b/test/fixtures/search.json @@ -1,4 +1,8941 @@ [ + { + "scope": "https://api.github.com:443", + "method": "GET", + "path": "/search/repositories?q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100&page=1", + "body": "", + "status": 200, + "response": { + "total_count": 473, + "incomplete_results": false, + "items": [ + { + "id": 8688362, + "name": "Nand2Tetris", + "full_name": "havivha/Nand2Tetris", + "owner": { + "login": "havivha", + "id": 2629901, + "avatar_url": "https://avatars.githubusercontent.com/u/2629901?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/havivha", + "html_url": "https://github.com/havivha", + "followers_url": "https://api.github.com/users/havivha/followers", + "following_url": "https://api.github.com/users/havivha/following{/other_user}", + "gists_url": "https://api.github.com/users/havivha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/havivha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/havivha/subscriptions", + "organizations_url": "https://api.github.com/users/havivha/orgs", + "repos_url": "https://api.github.com/users/havivha/repos", + "events_url": "https://api.github.com/users/havivha/events{/privacy}", + "received_events_url": "https://api.github.com/users/havivha/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/havivha/Nand2Tetris", + "description": "Computer implementation as described in \"The Elements of Computing Systems\"", + "fork": false, + "url": "https://api.github.com/repos/havivha/Nand2Tetris", + "forks_url": "https://api.github.com/repos/havivha/Nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/havivha/Nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/havivha/Nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/havivha/Nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/havivha/Nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/havivha/Nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/havivha/Nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/havivha/Nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/havivha/Nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/havivha/Nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/havivha/Nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/havivha/Nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/havivha/Nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/havivha/Nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/havivha/Nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/havivha/Nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/havivha/Nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/havivha/Nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/havivha/Nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/havivha/Nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/havivha/Nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/havivha/Nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/havivha/Nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/havivha/Nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/havivha/Nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/havivha/Nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/havivha/Nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/havivha/Nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/havivha/Nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/havivha/Nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/havivha/Nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/havivha/Nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/havivha/Nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/havivha/Nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/havivha/Nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/havivha/Nand2Tetris/deployments", + "created_at": "2013-03-10T17:04:20Z", + "updated_at": "2016-06-19T05:26:22Z", + "pushed_at": "2015-06-10T14:38:16Z", + "git_url": "git://github.com/havivha/Nand2Tetris.git", + "ssh_url": "git@github.com:havivha/Nand2Tetris.git", + "clone_url": "https://github.com/havivha/Nand2Tetris.git", + "svn_url": "https://github.com/havivha/Nand2Tetris", + "homepage": null, + "size": 474, + "stargazers_count": 51, + "watchers_count": 51, + "language": "Assembly", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 46, + "mirror_url": null, + "open_issues_count": 1, + "forks": 46, + "open_issues": 1, + "watchers": 51, + "default_branch": "master", + "score": 22.6195 + }, + { + "id": 37400358, + "name": "tetrasm", + "full_name": "programble/tetrasm", + "owner": { + "login": "programble", + "id": 166462, + "avatar_url": "https://avatars.githubusercontent.com/u/166462?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/programble", + "html_url": "https://github.com/programble", + "followers_url": "https://api.github.com/users/programble/followers", + "following_url": "https://api.github.com/users/programble/following{/other_user}", + "gists_url": "https://api.github.com/users/programble/gists{/gist_id}", + "starred_url": "https://api.github.com/users/programble/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/programble/subscriptions", + "organizations_url": "https://api.github.com/users/programble/orgs", + "repos_url": "https://api.github.com/users/programble/repos", + "events_url": "https://api.github.com/users/programble/events{/privacy}", + "received_events_url": "https://api.github.com/users/programble/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/programble/tetrasm", + "description": "Tetris for x86 in NASM", + "fork": false, + "url": "https://api.github.com/repos/programble/tetrasm", + "forks_url": "https://api.github.com/repos/programble/tetrasm/forks", + "keys_url": "https://api.github.com/repos/programble/tetrasm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/programble/tetrasm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/programble/tetrasm/teams", + "hooks_url": "https://api.github.com/repos/programble/tetrasm/hooks", + "issue_events_url": "https://api.github.com/repos/programble/tetrasm/issues/events{/number}", + "events_url": "https://api.github.com/repos/programble/tetrasm/events", + "assignees_url": "https://api.github.com/repos/programble/tetrasm/assignees{/user}", + "branches_url": "https://api.github.com/repos/programble/tetrasm/branches{/branch}", + "tags_url": "https://api.github.com/repos/programble/tetrasm/tags", + "blobs_url": "https://api.github.com/repos/programble/tetrasm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/programble/tetrasm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/programble/tetrasm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/programble/tetrasm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/programble/tetrasm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/programble/tetrasm/languages", + "stargazers_url": "https://api.github.com/repos/programble/tetrasm/stargazers", + "contributors_url": "https://api.github.com/repos/programble/tetrasm/contributors", + "subscribers_url": "https://api.github.com/repos/programble/tetrasm/subscribers", + "subscription_url": "https://api.github.com/repos/programble/tetrasm/subscription", + "commits_url": "https://api.github.com/repos/programble/tetrasm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/programble/tetrasm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/programble/tetrasm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/programble/tetrasm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/programble/tetrasm/contents/{+path}", + "compare_url": "https://api.github.com/repos/programble/tetrasm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/programble/tetrasm/merges", + "archive_url": "https://api.github.com/repos/programble/tetrasm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/programble/tetrasm/downloads", + "issues_url": "https://api.github.com/repos/programble/tetrasm/issues{/number}", + "pulls_url": "https://api.github.com/repos/programble/tetrasm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/programble/tetrasm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/programble/tetrasm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/programble/tetrasm/labels{/name}", + "releases_url": "https://api.github.com/repos/programble/tetrasm/releases{/id}", + "deployments_url": "https://api.github.com/repos/programble/tetrasm/deployments", + "created_at": "2015-06-14T05:26:28Z", + "updated_at": "2016-05-12T00:48:31Z", + "pushed_at": "2015-09-14T18:47:29Z", + "git_url": "git://github.com/programble/tetrasm.git", + "ssh_url": "git@github.com:programble/tetrasm.git", + "clone_url": "https://github.com/programble/tetrasm.git", + "svn_url": "https://github.com/programble/tetrasm", + "homepage": null, + "size": 420, + "stargazers_count": 47, + "watchers_count": 47, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "open_issues_count": 1, + "forks": 3, + "open_issues": 1, + "watchers": 47, + "default_branch": "master", + "score": 20.474998 + }, + { + "id": 21095601, + "name": "Tetris-Duel", + "full_name": "Tetris-Duel-Team/Tetris-Duel", + "owner": { + "login": "Tetris-Duel-Team", + "id": 7956696, + "avatar_url": "https://avatars.githubusercontent.com/u/7956696?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Tetris-Duel-Team", + "html_url": "https://github.com/Tetris-Duel-Team", + "followers_url": "https://api.github.com/users/Tetris-Duel-Team/followers", + "following_url": "https://api.github.com/users/Tetris-Duel-Team/following{/other_user}", + "gists_url": "https://api.github.com/users/Tetris-Duel-Team/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Tetris-Duel-Team/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Tetris-Duel-Team/subscriptions", + "organizations_url": "https://api.github.com/users/Tetris-Duel-Team/orgs", + "repos_url": "https://api.github.com/users/Tetris-Duel-Team/repos", + "events_url": "https://api.github.com/users/Tetris-Duel-Team/events{/privacy}", + "received_events_url": "https://api.github.com/users/Tetris-Duel-Team/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Tetris-Duel-Team/Tetris-Duel", + "description": "Multiplayer Tetris for Raspberry Pi (in bare metal assembly)", + "fork": false, + "url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel", + "forks_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/forks", + "keys_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/teams", + "hooks_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/hooks", + "issue_events_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/issues/events{/number}", + "events_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/events", + "assignees_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/assignees{/user}", + "branches_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/branches{/branch}", + "tags_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/tags", + "blobs_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/languages", + "stargazers_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/stargazers", + "contributors_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/contributors", + "subscribers_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/subscribers", + "subscription_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/subscription", + "commits_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/contents/{+path}", + "compare_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/merges", + "archive_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/downloads", + "issues_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/issues{/number}", + "pulls_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/labels{/name}", + "releases_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/releases{/id}", + "deployments_url": "https://api.github.com/repos/Tetris-Duel-Team/Tetris-Duel/deployments", + "created_at": "2014-06-22T14:23:25Z", + "updated_at": "2016-06-02T15:14:04Z", + "pushed_at": "2016-02-05T04:33:56Z", + "git_url": "git://github.com/Tetris-Duel-Team/Tetris-Duel.git", + "ssh_url": "git@github.com:Tetris-Duel-Team/Tetris-Duel.git", + "clone_url": "https://github.com/Tetris-Duel-Team/Tetris-Duel.git", + "svn_url": "https://github.com/Tetris-Duel-Team/Tetris-Duel", + "homepage": "", + "size": 11094, + "stargazers_count": 46, + "watchers_count": 46, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "open_issues_count": 0, + "forks": 6, + "open_issues": 0, + "watchers": 46, + "default_branch": "master", + "score": 19.276867 + }, + { + "id": 31056900, + "name": "tetris.c64", + "full_name": "wiebow/tetris.c64", + "owner": { + "login": "wiebow", + "id": 1338966, + "avatar_url": "https://avatars.githubusercontent.com/u/1338966?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/wiebow", + "html_url": "https://github.com/wiebow", + "followers_url": "https://api.github.com/users/wiebow/followers", + "following_url": "https://api.github.com/users/wiebow/following{/other_user}", + "gists_url": "https://api.github.com/users/wiebow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wiebow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wiebow/subscriptions", + "organizations_url": "https://api.github.com/users/wiebow/orgs", + "repos_url": "https://api.github.com/users/wiebow/repos", + "events_url": "https://api.github.com/users/wiebow/events{/privacy}", + "received_events_url": "https://api.github.com/users/wiebow/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/wiebow/tetris.c64", + "description": "Tetris in 6502 for the Commodore 64", + "fork": false, + "url": "https://api.github.com/repos/wiebow/tetris.c64", + "forks_url": "https://api.github.com/repos/wiebow/tetris.c64/forks", + "keys_url": "https://api.github.com/repos/wiebow/tetris.c64/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/wiebow/tetris.c64/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/wiebow/tetris.c64/teams", + "hooks_url": "https://api.github.com/repos/wiebow/tetris.c64/hooks", + "issue_events_url": "https://api.github.com/repos/wiebow/tetris.c64/issues/events{/number}", + "events_url": "https://api.github.com/repos/wiebow/tetris.c64/events", + "assignees_url": "https://api.github.com/repos/wiebow/tetris.c64/assignees{/user}", + "branches_url": "https://api.github.com/repos/wiebow/tetris.c64/branches{/branch}", + "tags_url": "https://api.github.com/repos/wiebow/tetris.c64/tags", + "blobs_url": "https://api.github.com/repos/wiebow/tetris.c64/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/wiebow/tetris.c64/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/wiebow/tetris.c64/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/wiebow/tetris.c64/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/wiebow/tetris.c64/statuses/{sha}", + "languages_url": "https://api.github.com/repos/wiebow/tetris.c64/languages", + "stargazers_url": "https://api.github.com/repos/wiebow/tetris.c64/stargazers", + "contributors_url": "https://api.github.com/repos/wiebow/tetris.c64/contributors", + "subscribers_url": "https://api.github.com/repos/wiebow/tetris.c64/subscribers", + "subscription_url": "https://api.github.com/repos/wiebow/tetris.c64/subscription", + "commits_url": "https://api.github.com/repos/wiebow/tetris.c64/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/wiebow/tetris.c64/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/wiebow/tetris.c64/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/wiebow/tetris.c64/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/wiebow/tetris.c64/contents/{+path}", + "compare_url": "https://api.github.com/repos/wiebow/tetris.c64/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/wiebow/tetris.c64/merges", + "archive_url": "https://api.github.com/repos/wiebow/tetris.c64/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/wiebow/tetris.c64/downloads", + "issues_url": "https://api.github.com/repos/wiebow/tetris.c64/issues{/number}", + "pulls_url": "https://api.github.com/repos/wiebow/tetris.c64/pulls{/number}", + "milestones_url": "https://api.github.com/repos/wiebow/tetris.c64/milestones{/number}", + "notifications_url": "https://api.github.com/repos/wiebow/tetris.c64/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/wiebow/tetris.c64/labels{/name}", + "releases_url": "https://api.github.com/repos/wiebow/tetris.c64/releases{/id}", + "deployments_url": "https://api.github.com/repos/wiebow/tetris.c64/deployments", + "created_at": "2015-02-20T08:46:43Z", + "updated_at": "2016-06-19T00:29:00Z", + "pushed_at": "2016-04-04T17:54:55Z", + "git_url": "git://github.com/wiebow/tetris.c64.git", + "ssh_url": "git@github.com:wiebow/tetris.c64.git", + "clone_url": "https://github.com/wiebow/tetris.c64.git", + "svn_url": "https://github.com/wiebow/tetris.c64", + "homepage": "http://wiebow.github.io/tetris.c64", + "size": 85, + "stargazers_count": 20, + "watchers_count": 20, + "language": "Assembly", + "has_issues": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 3, + "mirror_url": null, + "open_issues_count": 0, + "forks": 3, + "open_issues": 0, + "watchers": 20, + "default_branch": "master", + "score": 17.023262 + }, + { + "id": 12466077, + "name": "tetranglix", + "full_name": "Shikhin/tetranglix", + "owner": { + "login": "Shikhin", + "id": 617680, + "avatar_url": "https://avatars.githubusercontent.com/u/617680?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Shikhin", + "html_url": "https://github.com/Shikhin", + "followers_url": "https://api.github.com/users/Shikhin/followers", + "following_url": "https://api.github.com/users/Shikhin/following{/other_user}", + "gists_url": "https://api.github.com/users/Shikhin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shikhin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shikhin/subscriptions", + "organizations_url": "https://api.github.com/users/Shikhin/orgs", + "repos_url": "https://api.github.com/users/Shikhin/repos", + "events_url": "https://api.github.com/users/Shikhin/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shikhin/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Shikhin/tetranglix", + "description": "A bootable 512-byte Tetris clone.", + "fork": false, + "url": "https://api.github.com/repos/Shikhin/tetranglix", + "forks_url": "https://api.github.com/repos/Shikhin/tetranglix/forks", + "keys_url": "https://api.github.com/repos/Shikhin/tetranglix/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Shikhin/tetranglix/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Shikhin/tetranglix/teams", + "hooks_url": "https://api.github.com/repos/Shikhin/tetranglix/hooks", + "issue_events_url": "https://api.github.com/repos/Shikhin/tetranglix/issues/events{/number}", + "events_url": "https://api.github.com/repos/Shikhin/tetranglix/events", + "assignees_url": "https://api.github.com/repos/Shikhin/tetranglix/assignees{/user}", + "branches_url": "https://api.github.com/repos/Shikhin/tetranglix/branches{/branch}", + "tags_url": "https://api.github.com/repos/Shikhin/tetranglix/tags", + "blobs_url": "https://api.github.com/repos/Shikhin/tetranglix/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Shikhin/tetranglix/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Shikhin/tetranglix/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Shikhin/tetranglix/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Shikhin/tetranglix/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Shikhin/tetranglix/languages", + "stargazers_url": "https://api.github.com/repos/Shikhin/tetranglix/stargazers", + "contributors_url": "https://api.github.com/repos/Shikhin/tetranglix/contributors", + "subscribers_url": "https://api.github.com/repos/Shikhin/tetranglix/subscribers", + "subscription_url": "https://api.github.com/repos/Shikhin/tetranglix/subscription", + "commits_url": "https://api.github.com/repos/Shikhin/tetranglix/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Shikhin/tetranglix/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Shikhin/tetranglix/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Shikhin/tetranglix/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Shikhin/tetranglix/contents/{+path}", + "compare_url": "https://api.github.com/repos/Shikhin/tetranglix/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Shikhin/tetranglix/merges", + "archive_url": "https://api.github.com/repos/Shikhin/tetranglix/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Shikhin/tetranglix/downloads", + "issues_url": "https://api.github.com/repos/Shikhin/tetranglix/issues{/number}", + "pulls_url": "https://api.github.com/repos/Shikhin/tetranglix/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Shikhin/tetranglix/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Shikhin/tetranglix/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Shikhin/tetranglix/labels{/name}", + "releases_url": "https://api.github.com/repos/Shikhin/tetranglix/releases{/id}", + "deployments_url": "https://api.github.com/repos/Shikhin/tetranglix/deployments", + "created_at": "2013-08-29T17:03:07Z", + "updated_at": "2016-04-10T15:46:33Z", + "pushed_at": "2014-03-25T15:36:15Z", + "git_url": "git://github.com/Shikhin/tetranglix.git", + "ssh_url": "git@github.com:Shikhin/tetranglix.git", + "clone_url": "https://github.com/Shikhin/tetranglix.git", + "svn_url": "https://github.com/Shikhin/tetranglix", + "homepage": "", + "size": 314, + "stargazers_count": 15, + "watchers_count": 15, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "open_issues_count": 0, + "forks": 2, + "open_issues": 0, + "watchers": 15, + "default_branch": "master", + "score": 13.566106 + }, + { + "id": 4731946, + "name": "tetris-464", + "full_name": "cjauvin/tetris-464", + "owner": { + "login": "cjauvin", + "id": 488992, + "avatar_url": "https://avatars.githubusercontent.com/u/488992?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/cjauvin", + "html_url": "https://github.com/cjauvin", + "followers_url": "https://api.github.com/users/cjauvin/followers", + "following_url": "https://api.github.com/users/cjauvin/following{/other_user}", + "gists_url": "https://api.github.com/users/cjauvin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cjauvin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cjauvin/subscriptions", + "organizations_url": "https://api.github.com/users/cjauvin/orgs", + "repos_url": "https://api.github.com/users/cjauvin/repos", + "events_url": "https://api.github.com/users/cjauvin/events{/privacy}", + "received_events_url": "https://api.github.com/users/cjauvin/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/cjauvin/tetris-464", + "description": "A stripped down Tetris clone for the C=64 (no points, no levels, no nothing, except the bare block falling, controlling and colliding mechanism), in about a KLOC of 6502 assembly.", + "fork": false, + "url": "https://api.github.com/repos/cjauvin/tetris-464", + "forks_url": "https://api.github.com/repos/cjauvin/tetris-464/forks", + "keys_url": "https://api.github.com/repos/cjauvin/tetris-464/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cjauvin/tetris-464/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cjauvin/tetris-464/teams", + "hooks_url": "https://api.github.com/repos/cjauvin/tetris-464/hooks", + "issue_events_url": "https://api.github.com/repos/cjauvin/tetris-464/issues/events{/number}", + "events_url": "https://api.github.com/repos/cjauvin/tetris-464/events", + "assignees_url": "https://api.github.com/repos/cjauvin/tetris-464/assignees{/user}", + "branches_url": "https://api.github.com/repos/cjauvin/tetris-464/branches{/branch}", + "tags_url": "https://api.github.com/repos/cjauvin/tetris-464/tags", + "blobs_url": "https://api.github.com/repos/cjauvin/tetris-464/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cjauvin/tetris-464/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cjauvin/tetris-464/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cjauvin/tetris-464/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cjauvin/tetris-464/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cjauvin/tetris-464/languages", + "stargazers_url": "https://api.github.com/repos/cjauvin/tetris-464/stargazers", + "contributors_url": "https://api.github.com/repos/cjauvin/tetris-464/contributors", + "subscribers_url": "https://api.github.com/repos/cjauvin/tetris-464/subscribers", + "subscription_url": "https://api.github.com/repos/cjauvin/tetris-464/subscription", + "commits_url": "https://api.github.com/repos/cjauvin/tetris-464/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cjauvin/tetris-464/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cjauvin/tetris-464/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cjauvin/tetris-464/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cjauvin/tetris-464/contents/{+path}", + "compare_url": "https://api.github.com/repos/cjauvin/tetris-464/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cjauvin/tetris-464/merges", + "archive_url": "https://api.github.com/repos/cjauvin/tetris-464/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cjauvin/tetris-464/downloads", + "issues_url": "https://api.github.com/repos/cjauvin/tetris-464/issues{/number}", + "pulls_url": "https://api.github.com/repos/cjauvin/tetris-464/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cjauvin/tetris-464/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cjauvin/tetris-464/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cjauvin/tetris-464/labels{/name}", + "releases_url": "https://api.github.com/repos/cjauvin/tetris-464/releases{/id}", + "deployments_url": "https://api.github.com/repos/cjauvin/tetris-464/deployments", + "created_at": "2012-06-20T21:55:01Z", + "updated_at": "2016-05-08T21:31:45Z", + "pushed_at": "2014-02-01T14:50:07Z", + "git_url": "git://github.com/cjauvin/tetris-464.git", + "ssh_url": "git@github.com:cjauvin/tetris-464.git", + "clone_url": "https://github.com/cjauvin/tetris-464.git", + "svn_url": "https://github.com/cjauvin/tetris-464", + "homepage": "", + "size": 236, + "stargazers_count": 13, + "watchers_count": 13, + "language": "Assembly", + "has_issues": true, + "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": 13, + "default_branch": "master", + "score": 8.032027 + }, + { + "id": 13047218, + "name": "nand2tetris", + "full_name": "davidbrenner/nand2tetris", + "owner": { + "login": "davidbrenner", + "id": 236870, + "avatar_url": "https://avatars.githubusercontent.com/u/236870?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/davidbrenner", + "html_url": "https://github.com/davidbrenner", + "followers_url": "https://api.github.com/users/davidbrenner/followers", + "following_url": "https://api.github.com/users/davidbrenner/following{/other_user}", + "gists_url": "https://api.github.com/users/davidbrenner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/davidbrenner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/davidbrenner/subscriptions", + "organizations_url": "https://api.github.com/users/davidbrenner/orgs", + "repos_url": "https://api.github.com/users/davidbrenner/repos", + "events_url": "https://api.github.com/users/davidbrenner/events{/privacy}", + "received_events_url": "https://api.github.com/users/davidbrenner/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/davidbrenner/nand2tetris", + "description": "Implementation of a general purpose computer and OS built from first principles.", + "fork": false, + "url": "https://api.github.com/repos/davidbrenner/nand2tetris", + "forks_url": "https://api.github.com/repos/davidbrenner/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/davidbrenner/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/davidbrenner/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/davidbrenner/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/davidbrenner/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/davidbrenner/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/davidbrenner/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/davidbrenner/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/davidbrenner/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/davidbrenner/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/davidbrenner/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/davidbrenner/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/davidbrenner/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/davidbrenner/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/davidbrenner/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/davidbrenner/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/davidbrenner/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/davidbrenner/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/davidbrenner/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/davidbrenner/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/davidbrenner/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/davidbrenner/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/davidbrenner/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/davidbrenner/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/davidbrenner/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/davidbrenner/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/davidbrenner/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/davidbrenner/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/davidbrenner/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/davidbrenner/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/davidbrenner/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/davidbrenner/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/davidbrenner/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/davidbrenner/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/davidbrenner/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/davidbrenner/nand2tetris/deployments", + "created_at": "2013-09-23T21:07:41Z", + "updated_at": "2016-04-03T04:00:48Z", + "pushed_at": "2013-09-29T04:50:51Z", + "git_url": "git://github.com/davidbrenner/nand2tetris.git", + "ssh_url": "git@github.com:davidbrenner/nand2tetris.git", + "clone_url": "https://github.com/davidbrenner/nand2tetris.git", + "svn_url": "https://github.com/davidbrenner/nand2tetris", + "homepage": "", + "size": 460, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "open_issues_count": 0, + "forks": 5, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "score": 12.851244 + }, + { + "id": 15853035, + "name": "nand2tetris", + "full_name": "SeaRbSg/nand2tetris", + "owner": { + "login": "SeaRbSg", + "id": 5482773, + "avatar_url": "https://avatars.githubusercontent.com/u/5482773?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/SeaRbSg", + "html_url": "https://github.com/SeaRbSg", + "followers_url": "https://api.github.com/users/SeaRbSg/followers", + "following_url": "https://api.github.com/users/SeaRbSg/following{/other_user}", + "gists_url": "https://api.github.com/users/SeaRbSg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SeaRbSg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SeaRbSg/subscriptions", + "organizations_url": "https://api.github.com/users/SeaRbSg/orgs", + "repos_url": "https://api.github.com/users/SeaRbSg/repos", + "events_url": "https://api.github.com/users/SeaRbSg/events{/privacy}", + "received_events_url": "https://api.github.com/users/SeaRbSg/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/SeaRbSg/nand2tetris", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/SeaRbSg/nand2tetris", + "forks_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/SeaRbSg/nand2tetris/deployments", + "created_at": "2014-01-12T23:13:08Z", + "updated_at": "2016-02-21T01:22:54Z", + "pushed_at": "2014-05-11T14:43:14Z", + "git_url": "git://github.com/SeaRbSg/nand2tetris.git", + "ssh_url": "git@github.com:SeaRbSg/nand2tetris.git", + "clone_url": "https://github.com/SeaRbSg/nand2tetris.git", + "svn_url": "https://github.com/SeaRbSg/nand2tetris", + "homepage": null, + "size": 3368, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Assembly", + "has_issues": true, + "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": 9, + "default_branch": "master", + "score": 6.425622 + }, + { + "id": 22265170, + "name": "nand2tetris", + "full_name": "Sean-Der/nand2tetris", + "owner": { + "login": "Sean-Der", + "id": 1302304, + "avatar_url": "https://avatars.githubusercontent.com/u/1302304?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Sean-Der", + "html_url": "https://github.com/Sean-Der", + "followers_url": "https://api.github.com/users/Sean-Der/followers", + "following_url": "https://api.github.com/users/Sean-Der/following{/other_user}", + "gists_url": "https://api.github.com/users/Sean-Der/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Sean-Der/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Sean-Der/subscriptions", + "organizations_url": "https://api.github.com/users/Sean-Der/orgs", + "repos_url": "https://api.github.com/users/Sean-Der/repos", + "events_url": "https://api.github.com/users/Sean-Der/events{/privacy}", + "received_events_url": "https://api.github.com/users/Sean-Der/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Sean-Der/nand2tetris", + "description": "nand2tetris problems", + "fork": false, + "url": "https://api.github.com/repos/Sean-Der/nand2tetris", + "forks_url": "https://api.github.com/repos/Sean-Der/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/Sean-Der/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Sean-Der/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Sean-Der/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/Sean-Der/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/Sean-Der/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/Sean-Der/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/Sean-Der/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/Sean-Der/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/Sean-Der/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/Sean-Der/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Sean-Der/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Sean-Der/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Sean-Der/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Sean-Der/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Sean-Der/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/Sean-Der/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/Sean-Der/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/Sean-Der/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/Sean-Der/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/Sean-Der/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Sean-Der/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Sean-Der/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Sean-Der/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Sean-Der/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/Sean-Der/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Sean-Der/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/Sean-Der/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Sean-Der/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/Sean-Der/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/Sean-Der/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Sean-Der/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Sean-Der/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Sean-Der/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/Sean-Der/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/Sean-Der/nand2tetris/deployments", + "created_at": "2014-07-25T17:36:40Z", + "updated_at": "2016-05-27T10:00:18Z", + "pushed_at": "2015-01-14T07:36:35Z", + "git_url": "git://github.com/Sean-Der/nand2tetris.git", + "ssh_url": "git@github.com:Sean-Der/nand2tetris.git", + "clone_url": "https://github.com/Sean-Der/nand2tetris.git", + "svn_url": "https://github.com/Sean-Der/nand2tetris", + "homepage": null, + "size": 1704, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "open_issues_count": 0, + "forks": 9, + "open_issues": 0, + "watchers": 6, + "default_branch": "master", + "score": 12.925428 + }, + { + "id": 9770879, + "name": "nand2tetris", + "full_name": "jcoglan/nand2tetris", + "owner": { + "login": "jcoglan", + "id": 9265, + "avatar_url": "https://avatars.githubusercontent.com/u/9265?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/jcoglan", + "html_url": "https://github.com/jcoglan", + "followers_url": "https://api.github.com/users/jcoglan/followers", + "following_url": "https://api.github.com/users/jcoglan/following{/other_user}", + "gists_url": "https://api.github.com/users/jcoglan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jcoglan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jcoglan/subscriptions", + "organizations_url": "https://api.github.com/users/jcoglan/orgs", + "repos_url": "https://api.github.com/users/jcoglan/repos", + "events_url": "https://api.github.com/users/jcoglan/events{/privacy}", + "received_events_url": "https://api.github.com/users/jcoglan/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jcoglan/nand2tetris", + "description": "Solutions for http://www.nand2tetris.org/", + "fork": false, + "url": "https://api.github.com/repos/jcoglan/nand2tetris", + "forks_url": "https://api.github.com/repos/jcoglan/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/jcoglan/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jcoglan/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jcoglan/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/jcoglan/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/jcoglan/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/jcoglan/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/jcoglan/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/jcoglan/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/jcoglan/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/jcoglan/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jcoglan/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jcoglan/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jcoglan/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jcoglan/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jcoglan/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/jcoglan/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/jcoglan/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/jcoglan/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/jcoglan/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/jcoglan/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jcoglan/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jcoglan/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jcoglan/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jcoglan/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/jcoglan/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jcoglan/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/jcoglan/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jcoglan/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/jcoglan/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/jcoglan/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jcoglan/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jcoglan/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jcoglan/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/jcoglan/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/jcoglan/nand2tetris/deployments", + "created_at": "2013-04-30T12:47:22Z", + "updated_at": "2016-06-03T05:29:13Z", + "pushed_at": "2013-05-07T11:05:53Z", + "git_url": "git://github.com/jcoglan/nand2tetris.git", + "ssh_url": "git@github.com:jcoglan/nand2tetris.git", + "clone_url": "https://github.com/jcoglan/nand2tetris.git", + "svn_url": "https://github.com/jcoglan/nand2tetris", + "homepage": null, + "size": 616, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "open_issues_count": 1, + "forks": 4, + "open_issues": 1, + "watchers": 5, + "default_branch": "master", + "score": 11.299362 + }, + { + "id": 50568612, + "name": "nand2tetris", + "full_name": "mudphone/nand2tetris", + "owner": { + "login": "mudphone", + "id": 24647, + "avatar_url": "https://avatars.githubusercontent.com/u/24647?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/mudphone", + "html_url": "https://github.com/mudphone", + "followers_url": "https://api.github.com/users/mudphone/followers", + "following_url": "https://api.github.com/users/mudphone/following{/other_user}", + "gists_url": "https://api.github.com/users/mudphone/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mudphone/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mudphone/subscriptions", + "organizations_url": "https://api.github.com/users/mudphone/orgs", + "repos_url": "https://api.github.com/users/mudphone/repos", + "events_url": "https://api.github.com/users/mudphone/events{/privacy}", + "received_events_url": "https://api.github.com/users/mudphone/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/mudphone/nand2tetris", + "description": "Recursive, top-down, language processing, and So Can You!", + "fork": false, + "url": "https://api.github.com/repos/mudphone/nand2tetris", + "forks_url": "https://api.github.com/repos/mudphone/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/mudphone/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mudphone/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mudphone/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/mudphone/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/mudphone/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/mudphone/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/mudphone/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/mudphone/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/mudphone/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/mudphone/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mudphone/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mudphone/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mudphone/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mudphone/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mudphone/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/mudphone/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/mudphone/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/mudphone/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/mudphone/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/mudphone/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mudphone/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mudphone/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mudphone/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mudphone/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/mudphone/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mudphone/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/mudphone/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mudphone/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/mudphone/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/mudphone/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mudphone/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mudphone/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mudphone/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/mudphone/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/mudphone/nand2tetris/deployments", + "created_at": "2016-01-28T08:36:04Z", + "updated_at": "2016-05-21T17:49:54Z", + "pushed_at": "2016-05-21T18:20:21Z", + "git_url": "git://github.com/mudphone/nand2tetris.git", + "ssh_url": "git@github.com:mudphone/nand2tetris.git", + "clone_url": "https://github.com/mudphone/nand2tetris.git", + "svn_url": "https://github.com/mudphone/nand2tetris", + "homepage": "", + "size": 288, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Assembly", + "has_issues": true, + "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": 5, + "default_branch": "master", + "score": 5.654875 + }, + { + "id": 3924601, + "name": "mips-tetris", + "full_name": "johngunderman/mips-tetris", + "owner": { + "login": "johngunderman", + "id": 66752, + "avatar_url": "https://avatars.githubusercontent.com/u/66752?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/johngunderman", + "html_url": "https://github.com/johngunderman", + "followers_url": "https://api.github.com/users/johngunderman/followers", + "following_url": "https://api.github.com/users/johngunderman/following{/other_user}", + "gists_url": "https://api.github.com/users/johngunderman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/johngunderman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/johngunderman/subscriptions", + "organizations_url": "https://api.github.com/users/johngunderman/orgs", + "repos_url": "https://api.github.com/users/johngunderman/repos", + "events_url": "https://api.github.com/users/johngunderman/events{/privacy}", + "received_events_url": "https://api.github.com/users/johngunderman/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/johngunderman/mips-tetris", + "description": "Tetris implemented in MIPS assembly", + "fork": false, + "url": "https://api.github.com/repos/johngunderman/mips-tetris", + "forks_url": "https://api.github.com/repos/johngunderman/mips-tetris/forks", + "keys_url": "https://api.github.com/repos/johngunderman/mips-tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/johngunderman/mips-tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/johngunderman/mips-tetris/teams", + "hooks_url": "https://api.github.com/repos/johngunderman/mips-tetris/hooks", + "issue_events_url": "https://api.github.com/repos/johngunderman/mips-tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/johngunderman/mips-tetris/events", + "assignees_url": "https://api.github.com/repos/johngunderman/mips-tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/johngunderman/mips-tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/johngunderman/mips-tetris/tags", + "blobs_url": "https://api.github.com/repos/johngunderman/mips-tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/johngunderman/mips-tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/johngunderman/mips-tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/johngunderman/mips-tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/johngunderman/mips-tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/johngunderman/mips-tetris/languages", + "stargazers_url": "https://api.github.com/repos/johngunderman/mips-tetris/stargazers", + "contributors_url": "https://api.github.com/repos/johngunderman/mips-tetris/contributors", + "subscribers_url": "https://api.github.com/repos/johngunderman/mips-tetris/subscribers", + "subscription_url": "https://api.github.com/repos/johngunderman/mips-tetris/subscription", + "commits_url": "https://api.github.com/repos/johngunderman/mips-tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/johngunderman/mips-tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/johngunderman/mips-tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/johngunderman/mips-tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/johngunderman/mips-tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/johngunderman/mips-tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/johngunderman/mips-tetris/merges", + "archive_url": "https://api.github.com/repos/johngunderman/mips-tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/johngunderman/mips-tetris/downloads", + "issues_url": "https://api.github.com/repos/johngunderman/mips-tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/johngunderman/mips-tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/johngunderman/mips-tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/johngunderman/mips-tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/johngunderman/mips-tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/johngunderman/mips-tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/johngunderman/mips-tetris/deployments", + "created_at": "2012-04-04T01:43:31Z", + "updated_at": "2016-02-27T18:25:14Z", + "pushed_at": "2012-05-04T20:13:55Z", + "git_url": "git://github.com/johngunderman/mips-tetris.git", + "ssh_url": "git@github.com:johngunderman/mips-tetris.git", + "clone_url": "https://github.com/johngunderman/mips-tetris.git", + "svn_url": "https://github.com/johngunderman/mips-tetris", + "homepage": "", + "size": 1045, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "open_issues_count": 0, + "forks": 2, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "score": 13.566106 + }, + { + "id": 7028354, + "name": "nand2tetris", + "full_name": "seebees/nand2tetris", + "owner": { + "login": "seebees", + "id": 300465, + "avatar_url": "https://avatars.githubusercontent.com/u/300465?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/seebees", + "html_url": "https://github.com/seebees", + "followers_url": "https://api.github.com/users/seebees/followers", + "following_url": "https://api.github.com/users/seebees/following{/other_user}", + "gists_url": "https://api.github.com/users/seebees/gists{/gist_id}", + "starred_url": "https://api.github.com/users/seebees/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/seebees/subscriptions", + "organizations_url": "https://api.github.com/users/seebees/orgs", + "repos_url": "https://api.github.com/users/seebees/repos", + "events_url": "https://api.github.com/users/seebees/events{/privacy}", + "received_events_url": "https://api.github.com/users/seebees/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/seebees/nand2tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/seebees/nand2tetris", + "forks_url": "https://api.github.com/repos/seebees/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/seebees/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/seebees/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/seebees/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/seebees/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/seebees/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/seebees/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/seebees/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/seebees/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/seebees/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/seebees/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/seebees/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/seebees/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/seebees/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/seebees/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/seebees/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/seebees/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/seebees/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/seebees/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/seebees/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/seebees/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/seebees/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/seebees/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/seebees/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/seebees/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/seebees/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/seebees/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/seebees/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/seebees/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/seebees/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/seebees/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/seebees/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/seebees/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/seebees/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/seebees/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/seebees/nand2tetris/deployments", + "created_at": "2012-12-06T02:14:42Z", + "updated_at": "2016-05-24T00:30:40Z", + "pushed_at": "2013-02-16T03:21:44Z", + "git_url": "git://github.com/seebees/nand2tetris.git", + "ssh_url": "git@github.com:seebees/nand2tetris.git", + "clone_url": "https://github.com/seebees/nand2tetris.git", + "svn_url": "https://github.com/seebees/nand2tetris", + "homepage": null, + "size": 636, + "stargazers_count": 4, + "watchers_count": 4, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "open_issues_count": 0, + "forks": 7, + "open_issues": 0, + "watchers": 4, + "default_branch": "master", + "score": 11.30975 + }, + { + "id": 3081286, + "name": "Tetris", + "full_name": "dtrupenn/Tetris", + "owner": { + "login": "dtrupenn", + "id": 872147, + "avatar_url": "https://avatars.githubusercontent.com/u/872147?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/dtrupenn", + "html_url": "https://github.com/dtrupenn", + "followers_url": "https://api.github.com/users/dtrupenn/followers", + "following_url": "https://api.github.com/users/dtrupenn/following{/other_user}", + "gists_url": "https://api.github.com/users/dtrupenn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dtrupenn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dtrupenn/subscriptions", + "organizations_url": "https://api.github.com/users/dtrupenn/orgs", + "repos_url": "https://api.github.com/users/dtrupenn/repos", + "events_url": "https://api.github.com/users/dtrupenn/events{/privacy}", + "received_events_url": "https://api.github.com/users/dtrupenn/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dtrupenn/Tetris", + "description": "A C implementation of Tetris using Pennsim through LC4", + "fork": false, + "url": "https://api.github.com/repos/dtrupenn/Tetris", + "forks_url": "https://api.github.com/repos/dtrupenn/Tetris/forks", + "keys_url": "https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dtrupenn/Tetris/teams", + "hooks_url": "https://api.github.com/repos/dtrupenn/Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/dtrupenn/Tetris/events", + "assignees_url": "https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/dtrupenn/Tetris/tags", + "blobs_url": "https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dtrupenn/Tetris/languages", + "stargazers_url": "https://api.github.com/repos/dtrupenn/Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/dtrupenn/Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/dtrupenn/Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/dtrupenn/Tetris/subscription", + "commits_url": "https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dtrupenn/Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dtrupenn/Tetris/merges", + "archive_url": "https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dtrupenn/Tetris/downloads", + "issues_url": "https://api.github.com/repos/dtrupenn/Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dtrupenn/Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/dtrupenn/Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/dtrupenn/Tetris/deployments", + "created_at": "2012-01-01T00:31:50Z", + "updated_at": "2016-02-09T14:01:44Z", + "pushed_at": "2012-01-01T00:37:02Z", + "git_url": "git://github.com/dtrupenn/Tetris.git", + "ssh_url": "git@github.com:dtrupenn/Tetris.git", + "clone_url": "https://github.com/dtrupenn/Tetris.git", + "svn_url": "https://github.com/dtrupenn/Tetris", + "homepage": "", + "size": 496, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Assembly", + "has_issues": true, + "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": 3, + "default_branch": "master", + "score": 11.815747 + }, + { + "id": 8496749, + "name": "bootris", + "full_name": "dbittman/bootris", + "owner": { + "login": "dbittman", + "id": 3292300, + "avatar_url": "https://avatars.githubusercontent.com/u/3292300?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/dbittman", + "html_url": "https://github.com/dbittman", + "followers_url": "https://api.github.com/users/dbittman/followers", + "following_url": "https://api.github.com/users/dbittman/following{/other_user}", + "gists_url": "https://api.github.com/users/dbittman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dbittman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dbittman/subscriptions", + "organizations_url": "https://api.github.com/users/dbittman/orgs", + "repos_url": "https://api.github.com/users/dbittman/repos", + "events_url": "https://api.github.com/users/dbittman/events{/privacy}", + "received_events_url": "https://api.github.com/users/dbittman/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dbittman/bootris", + "description": "Bootsector Tetris Game", + "fork": false, + "url": "https://api.github.com/repos/dbittman/bootris", + "forks_url": "https://api.github.com/repos/dbittman/bootris/forks", + "keys_url": "https://api.github.com/repos/dbittman/bootris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dbittman/bootris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dbittman/bootris/teams", + "hooks_url": "https://api.github.com/repos/dbittman/bootris/hooks", + "issue_events_url": "https://api.github.com/repos/dbittman/bootris/issues/events{/number}", + "events_url": "https://api.github.com/repos/dbittman/bootris/events", + "assignees_url": "https://api.github.com/repos/dbittman/bootris/assignees{/user}", + "branches_url": "https://api.github.com/repos/dbittman/bootris/branches{/branch}", + "tags_url": "https://api.github.com/repos/dbittman/bootris/tags", + "blobs_url": "https://api.github.com/repos/dbittman/bootris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dbittman/bootris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dbittman/bootris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dbittman/bootris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dbittman/bootris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dbittman/bootris/languages", + "stargazers_url": "https://api.github.com/repos/dbittman/bootris/stargazers", + "contributors_url": "https://api.github.com/repos/dbittman/bootris/contributors", + "subscribers_url": "https://api.github.com/repos/dbittman/bootris/subscribers", + "subscription_url": "https://api.github.com/repos/dbittman/bootris/subscription", + "commits_url": "https://api.github.com/repos/dbittman/bootris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dbittman/bootris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dbittman/bootris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dbittman/bootris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dbittman/bootris/contents/{+path}", + "compare_url": "https://api.github.com/repos/dbittman/bootris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dbittman/bootris/merges", + "archive_url": "https://api.github.com/repos/dbittman/bootris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dbittman/bootris/downloads", + "issues_url": "https://api.github.com/repos/dbittman/bootris/issues{/number}", + "pulls_url": "https://api.github.com/repos/dbittman/bootris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dbittman/bootris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dbittman/bootris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dbittman/bootris/labels{/name}", + "releases_url": "https://api.github.com/repos/dbittman/bootris/releases{/id}", + "deployments_url": "https://api.github.com/repos/dbittman/bootris/deployments", + "created_at": "2013-03-01T07:46:44Z", + "updated_at": "2016-01-09T00:19:37Z", + "pushed_at": "2013-03-01T08:22:10Z", + "git_url": "git://github.com/dbittman/bootris.git", + "ssh_url": "git@github.com:dbittman/bootris.git", + "clone_url": "https://github.com/dbittman/bootris.git", + "svn_url": "https://github.com/dbittman/bootris", + "homepage": null, + "size": 108, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "has_issues": true, + "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": 2, + "default_branch": "master", + "score": 10.256741 + }, + { + "id": 8799619, + "name": "Nand2Tetris", + "full_name": "timlhenderson/Nand2Tetris", + "owner": { + "login": "timlhenderson", + "id": 3543717, + "avatar_url": "https://avatars.githubusercontent.com/u/3543717?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/timlhenderson", + "html_url": "https://github.com/timlhenderson", + "followers_url": "https://api.github.com/users/timlhenderson/followers", + "following_url": "https://api.github.com/users/timlhenderson/following{/other_user}", + "gists_url": "https://api.github.com/users/timlhenderson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/timlhenderson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/timlhenderson/subscriptions", + "organizations_url": "https://api.github.com/users/timlhenderson/orgs", + "repos_url": "https://api.github.com/users/timlhenderson/repos", + "events_url": "https://api.github.com/users/timlhenderson/events{/privacy}", + "received_events_url": "https://api.github.com/users/timlhenderson/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/timlhenderson/Nand2Tetris", + "description": "My solutions to the computer science course NAND to Tetris", + "fork": false, + "url": "https://api.github.com/repos/timlhenderson/Nand2Tetris", + "forks_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/timlhenderson/Nand2Tetris/deployments", + "created_at": "2013-03-15T13:21:12Z", + "updated_at": "2015-04-30T11:16:04Z", + "pushed_at": "2012-10-15T06:48:42Z", + "git_url": "git://github.com/timlhenderson/Nand2Tetris.git", + "ssh_url": "git@github.com:timlhenderson/Nand2Tetris.git", + "clone_url": "https://github.com/timlhenderson/Nand2Tetris.git", + "svn_url": "https://github.com/timlhenderson/Nand2Tetris", + "homepage": "http://www.nand2tetris.org/", + "size": 117, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "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": 2, + "default_branch": "master", + "score": 10.17458 + }, + { + "id": 7025062, + "name": "From-Nand-to-Tetris", + "full_name": "itzhak-razi/From-Nand-to-Tetris", + "owner": { + "login": "itzhak-razi", + "id": 1174967, + "avatar_url": "https://avatars.githubusercontent.com/u/1174967?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/itzhak-razi", + "html_url": "https://github.com/itzhak-razi", + "followers_url": "https://api.github.com/users/itzhak-razi/followers", + "following_url": "https://api.github.com/users/itzhak-razi/following{/other_user}", + "gists_url": "https://api.github.com/users/itzhak-razi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/itzhak-razi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/itzhak-razi/subscriptions", + "organizations_url": "https://api.github.com/users/itzhak-razi/orgs", + "repos_url": "https://api.github.com/users/itzhak-razi/repos", + "events_url": "https://api.github.com/users/itzhak-razi/events{/privacy}", + "received_events_url": "https://api.github.com/users/itzhak-razi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/itzhak-razi/From-Nand-to-Tetris", + "description": "assignments", + "fork": false, + "url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris", + "forks_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/forks", + "keys_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/teams", + "hooks_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/events", + "assignees_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/tags", + "blobs_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/languages", + "stargazers_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/subscription", + "commits_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/merges", + "archive_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/downloads", + "issues_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/itzhak-razi/From-Nand-to-Tetris/deployments", + "created_at": "2012-12-05T21:38:17Z", + "updated_at": "2016-02-01T16:47:32Z", + "pushed_at": "2012-11-23T01:12:58Z", + "git_url": "git://github.com/itzhak-razi/From-Nand-to-Tetris.git", + "ssh_url": "git@github.com:itzhak-razi/From-Nand-to-Tetris.git", + "clone_url": "https://github.com/itzhak-razi/From-Nand-to-Tetris.git", + "svn_url": "https://github.com/itzhak-razi/From-Nand-to-Tetris", + "homepage": null, + "size": 1193, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "has_issues": false, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "open_issues_count": 0, + "forks": 8, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "score": 9.638433 + }, + { + "id": 27810275, + "name": "Nand2Tetris", + "full_name": "xctom/Nand2Tetris", + "owner": { + "login": "xctom", + "id": 4891624, + "avatar_url": "https://avatars.githubusercontent.com/u/4891624?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/xctom", + "html_url": "https://github.com/xctom", + "followers_url": "https://api.github.com/users/xctom/followers", + "following_url": "https://api.github.com/users/xctom/following{/other_user}", + "gists_url": "https://api.github.com/users/xctom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/xctom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/xctom/subscriptions", + "organizations_url": "https://api.github.com/users/xctom/orgs", + "repos_url": "https://api.github.com/users/xctom/repos", + "events_url": "https://api.github.com/users/xctom/events{/privacy}", + "received_events_url": "https://api.github.com/users/xctom/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/xctom/Nand2Tetris", + "description": "All projects for Nand2Teris", + "fork": false, + "url": "https://api.github.com/repos/xctom/Nand2Tetris", + "forks_url": "https://api.github.com/repos/xctom/Nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/xctom/Nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/xctom/Nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/xctom/Nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/xctom/Nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/xctom/Nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/xctom/Nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/xctom/Nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/xctom/Nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/xctom/Nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/xctom/Nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/xctom/Nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/xctom/Nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/xctom/Nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/xctom/Nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/xctom/Nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/xctom/Nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/xctom/Nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/xctom/Nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/xctom/Nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/xctom/Nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/xctom/Nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/xctom/Nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/xctom/Nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/xctom/Nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/xctom/Nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/xctom/Nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/xctom/Nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/xctom/Nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/xctom/Nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/xctom/Nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/xctom/Nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/xctom/Nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/xctom/Nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/xctom/Nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/xctom/Nand2Tetris/deployments", + "created_at": "2014-12-10T08:46:59Z", + "updated_at": "2015-12-12T06:24:34Z", + "pushed_at": "2014-12-10T09:16:48Z", + "git_url": "git://github.com/xctom/Nand2Tetris.git", + "ssh_url": "git@github.com:xctom/Nand2Tetris.git", + "clone_url": "https://github.com/xctom/Nand2Tetris.git", + "svn_url": "https://github.com/xctom/Nand2Tetris", + "homepage": null, + "size": 444, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "open_issues_count": 0, + "forks": 12, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "score": 8.032027 + }, + { + "id": 9916585, + "name": "nand2tetris", + "full_name": "benmoss/nand2tetris", + "owner": { + "login": "benmoss", + "id": 239754, + "avatar_url": "https://avatars.githubusercontent.com/u/239754?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/benmoss", + "html_url": "https://github.com/benmoss", + "followers_url": "https://api.github.com/users/benmoss/followers", + "following_url": "https://api.github.com/users/benmoss/following{/other_user}", + "gists_url": "https://api.github.com/users/benmoss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/benmoss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/benmoss/subscriptions", + "organizations_url": "https://api.github.com/users/benmoss/orgs", + "repos_url": "https://api.github.com/users/benmoss/repos", + "events_url": "https://api.github.com/users/benmoss/events{/privacy}", + "received_events_url": "https://api.github.com/users/benmoss/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/benmoss/nand2tetris", + "description": "http://www.nand2tetris.org/", + "fork": false, + "url": "https://api.github.com/repos/benmoss/nand2tetris", + "forks_url": "https://api.github.com/repos/benmoss/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/benmoss/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/benmoss/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/benmoss/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/benmoss/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/benmoss/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/benmoss/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/benmoss/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/benmoss/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/benmoss/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/benmoss/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/benmoss/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/benmoss/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/benmoss/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/benmoss/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/benmoss/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/benmoss/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/benmoss/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/benmoss/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/benmoss/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/benmoss/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/benmoss/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/benmoss/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/benmoss/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/benmoss/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/benmoss/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/benmoss/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/benmoss/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/benmoss/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/benmoss/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/benmoss/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/benmoss/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/benmoss/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/benmoss/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/benmoss/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/benmoss/nand2tetris/deployments", + "created_at": "2013-05-07T16:37:55Z", + "updated_at": "2015-04-27T00:18:28Z", + "pushed_at": "2014-11-03T16:42:14Z", + "git_url": "git://github.com/benmoss/nand2tetris.git", + "ssh_url": "git@github.com:benmoss/nand2tetris.git", + "clone_url": "https://github.com/benmoss/nand2tetris.git", + "svn_url": "https://github.com/benmoss/nand2tetris", + "homepage": null, + "size": 644, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "has_issues": true, + "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": 2, + "default_branch": "master", + "score": 4.8425837 + }, + { + "id": 10392131, + "name": "nand2tetris", + "full_name": "mattkgross/nand2tetris", + "owner": { + "login": "mattkgross", + "id": 3393610, + "avatar_url": "https://avatars.githubusercontent.com/u/3393610?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/mattkgross", + "html_url": "https://github.com/mattkgross", + "followers_url": "https://api.github.com/users/mattkgross/followers", + "following_url": "https://api.github.com/users/mattkgross/following{/other_user}", + "gists_url": "https://api.github.com/users/mattkgross/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mattkgross/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mattkgross/subscriptions", + "organizations_url": "https://api.github.com/users/mattkgross/orgs", + "repos_url": "https://api.github.com/users/mattkgross/repos", + "events_url": "https://api.github.com/users/mattkgross/events{/privacy}", + "received_events_url": "https://api.github.com/users/mattkgross/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/mattkgross/nand2tetris", + "description": "Tetris Build. Start at Logic Gates, then Assemblers & OS, then APIs & User Interface.", + "fork": false, + "url": "https://api.github.com/repos/mattkgross/nand2tetris", + "forks_url": "https://api.github.com/repos/mattkgross/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/mattkgross/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mattkgross/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mattkgross/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/mattkgross/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/mattkgross/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/mattkgross/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/mattkgross/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/mattkgross/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/mattkgross/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/mattkgross/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mattkgross/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mattkgross/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mattkgross/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mattkgross/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mattkgross/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/mattkgross/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/mattkgross/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/mattkgross/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/mattkgross/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/mattkgross/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mattkgross/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mattkgross/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mattkgross/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mattkgross/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/mattkgross/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mattkgross/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/mattkgross/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mattkgross/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/mattkgross/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/mattkgross/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mattkgross/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mattkgross/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mattkgross/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/mattkgross/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/mattkgross/nand2tetris/deployments", + "created_at": "2013-05-30T21:12:42Z", + "updated_at": "2015-04-20T17:22:10Z", + "pushed_at": "2013-06-13T02:53:18Z", + "git_url": "git://github.com/mattkgross/nand2tetris.git", + "ssh_url": "git@github.com:mattkgross/nand2tetris.git", + "clone_url": "https://github.com/mattkgross/nand2tetris.git", + "svn_url": "https://github.com/mattkgross/nand2tetris", + "homepage": null, + "size": 7364, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "has_issues": true, + "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": 2, + "default_branch": "master", + "score": 4.8192167 + }, + { + "id": 26382269, + "name": "nand2tetris", + "full_name": "anirudt/nand2tetris", + "owner": { + "login": "anirudt", + "id": 5916149, + "avatar_url": "https://avatars.githubusercontent.com/u/5916149?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/anirudt", + "html_url": "https://github.com/anirudt", + "followers_url": "https://api.github.com/users/anirudt/followers", + "following_url": "https://api.github.com/users/anirudt/following{/other_user}", + "gists_url": "https://api.github.com/users/anirudt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anirudt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anirudt/subscriptions", + "organizations_url": "https://api.github.com/users/anirudt/orgs", + "repos_url": "https://api.github.com/users/anirudt/repos", + "events_url": "https://api.github.com/users/anirudt/events{/privacy}", + "received_events_url": "https://api.github.com/users/anirudt/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/anirudt/nand2tetris", + "description": "Nand2Tetris implementation from 'The Elements of Computing Systems'", + "fork": false, + "url": "https://api.github.com/repos/anirudt/nand2tetris", + "forks_url": "https://api.github.com/repos/anirudt/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/anirudt/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/anirudt/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/anirudt/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/anirudt/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/anirudt/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/anirudt/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/anirudt/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/anirudt/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/anirudt/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/anirudt/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/anirudt/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/anirudt/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/anirudt/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/anirudt/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/anirudt/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/anirudt/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/anirudt/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/anirudt/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/anirudt/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/anirudt/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/anirudt/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/anirudt/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/anirudt/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/anirudt/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/anirudt/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/anirudt/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/anirudt/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/anirudt/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/anirudt/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/anirudt/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/anirudt/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/anirudt/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/anirudt/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/anirudt/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/anirudt/nand2tetris/deployments", + "created_at": "2014-11-09T02:37:16Z", + "updated_at": "2016-05-23T18:19:05Z", + "pushed_at": "2014-11-13T13:27:28Z", + "git_url": "git://github.com/anirudt/nand2tetris.git", + "ssh_url": "git@github.com:anirudt/nand2tetris.git", + "clone_url": "https://github.com/anirudt/nand2tetris.git", + "svn_url": "https://github.com/anirudt/nand2tetris", + "homepage": null, + "size": 356, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "has_issues": true, + "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": 2, + "default_branch": "master", + "score": 4.8192167 + }, + { + "id": 42813938, + "name": "nand2tetris-memo", + "full_name": "hirak/nand2tetris-memo", + "owner": { + "login": "hirak", + "id": 835251, + "avatar_url": "https://avatars.githubusercontent.com/u/835251?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/hirak", + "html_url": "https://github.com/hirak", + "followers_url": "https://api.github.com/users/hirak/followers", + "following_url": "https://api.github.com/users/hirak/following{/other_user}", + "gists_url": "https://api.github.com/users/hirak/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hirak/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hirak/subscriptions", + "organizations_url": "https://api.github.com/users/hirak/orgs", + "repos_url": "https://api.github.com/users/hirak/repos", + "events_url": "https://api.github.com/users/hirak/events{/privacy}", + "received_events_url": "https://api.github.com/users/hirak/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/hirak/nand2tetris-memo", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/hirak/nand2tetris-memo", + "forks_url": "https://api.github.com/repos/hirak/nand2tetris-memo/forks", + "keys_url": "https://api.github.com/repos/hirak/nand2tetris-memo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hirak/nand2tetris-memo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hirak/nand2tetris-memo/teams", + "hooks_url": "https://api.github.com/repos/hirak/nand2tetris-memo/hooks", + "issue_events_url": "https://api.github.com/repos/hirak/nand2tetris-memo/issues/events{/number}", + "events_url": "https://api.github.com/repos/hirak/nand2tetris-memo/events", + "assignees_url": "https://api.github.com/repos/hirak/nand2tetris-memo/assignees{/user}", + "branches_url": "https://api.github.com/repos/hirak/nand2tetris-memo/branches{/branch}", + "tags_url": "https://api.github.com/repos/hirak/nand2tetris-memo/tags", + "blobs_url": "https://api.github.com/repos/hirak/nand2tetris-memo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hirak/nand2tetris-memo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hirak/nand2tetris-memo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hirak/nand2tetris-memo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hirak/nand2tetris-memo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hirak/nand2tetris-memo/languages", + "stargazers_url": "https://api.github.com/repos/hirak/nand2tetris-memo/stargazers", + "contributors_url": "https://api.github.com/repos/hirak/nand2tetris-memo/contributors", + "subscribers_url": "https://api.github.com/repos/hirak/nand2tetris-memo/subscribers", + "subscription_url": "https://api.github.com/repos/hirak/nand2tetris-memo/subscription", + "commits_url": "https://api.github.com/repos/hirak/nand2tetris-memo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hirak/nand2tetris-memo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hirak/nand2tetris-memo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hirak/nand2tetris-memo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hirak/nand2tetris-memo/contents/{+path}", + "compare_url": "https://api.github.com/repos/hirak/nand2tetris-memo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hirak/nand2tetris-memo/merges", + "archive_url": "https://api.github.com/repos/hirak/nand2tetris-memo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hirak/nand2tetris-memo/downloads", + "issues_url": "https://api.github.com/repos/hirak/nand2tetris-memo/issues{/number}", + "pulls_url": "https://api.github.com/repos/hirak/nand2tetris-memo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hirak/nand2tetris-memo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hirak/nand2tetris-memo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hirak/nand2tetris-memo/labels{/name}", + "releases_url": "https://api.github.com/repos/hirak/nand2tetris-memo/releases{/id}", + "deployments_url": "https://api.github.com/repos/hirak/nand2tetris-memo/deployments", + "created_at": "2015-09-20T13:29:15Z", + "updated_at": "2016-01-06T21:12:41Z", + "pushed_at": "2015-11-06T06:53:00Z", + "git_url": "git://github.com/hirak/nand2tetris-memo.git", + "ssh_url": "git@github.com:hirak/nand2tetris-memo.git", + "clone_url": "https://github.com/hirak/nand2tetris-memo.git", + "svn_url": "https://github.com/hirak/nand2tetris-memo", + "homepage": null, + "size": 356, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Assembly", + "has_issues": true, + "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": 2, + "default_branch": "master", + "score": 4.0160136 + }, + { + "id": 14554907, + "name": "8088-Microprocessor-Tetris", + "full_name": "coolhongly/8088-Microprocessor-Tetris", + "owner": { + "login": "coolhongly", + "id": 775239, + "avatar_url": "https://avatars.githubusercontent.com/u/775239?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/coolhongly", + "html_url": "https://github.com/coolhongly", + "followers_url": "https://api.github.com/users/coolhongly/followers", + "following_url": "https://api.github.com/users/coolhongly/following{/other_user}", + "gists_url": "https://api.github.com/users/coolhongly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/coolhongly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/coolhongly/subscriptions", + "organizations_url": "https://api.github.com/users/coolhongly/orgs", + "repos_url": "https://api.github.com/users/coolhongly/repos", + "events_url": "https://api.github.com/users/coolhongly/events{/privacy}", + "received_events_url": "https://api.github.com/users/coolhongly/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/coolhongly/8088-Microprocessor-Tetris", + "description": "Tetris", + "fork": false, + "url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris", + "forks_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/forks", + "keys_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/teams", + "hooks_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/events", + "assignees_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/tags", + "blobs_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/languages", + "stargazers_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/subscription", + "commits_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/merges", + "archive_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/downloads", + "issues_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/coolhongly/8088-Microprocessor-Tetris/deployments", + "created_at": "2013-11-20T11:34:34Z", + "updated_at": "2015-09-17T17:02:21Z", + "pushed_at": "2014-09-11T05:20:19Z", + "git_url": "git://github.com/coolhongly/8088-Microprocessor-Tetris.git", + "ssh_url": "git@github.com:coolhongly/8088-Microprocessor-Tetris.git", + "clone_url": "https://github.com/coolhongly/8088-Microprocessor-Tetris.git", + "svn_url": "https://github.com/coolhongly/8088-Microprocessor-Tetris", + "homepage": null, + "size": 4048, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 13.675654 + }, + { + "id": 9820994, + "name": "tetris-assembly", + "full_name": "caioflores/tetris-assembly", + "owner": { + "login": "caioflores", + "id": 4183877, + "avatar_url": "https://avatars.githubusercontent.com/u/4183877?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/caioflores", + "html_url": "https://github.com/caioflores", + "followers_url": "https://api.github.com/users/caioflores/followers", + "following_url": "https://api.github.com/users/caioflores/following{/other_user}", + "gists_url": "https://api.github.com/users/caioflores/gists{/gist_id}", + "starred_url": "https://api.github.com/users/caioflores/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/caioflores/subscriptions", + "organizations_url": "https://api.github.com/users/caioflores/orgs", + "repos_url": "https://api.github.com/users/caioflores/repos", + "events_url": "https://api.github.com/users/caioflores/events{/privacy}", + "received_events_url": "https://api.github.com/users/caioflores/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/caioflores/tetris-assembly", + "description": "Tetris assembly ICMC", + "fork": false, + "url": "https://api.github.com/repos/caioflores/tetris-assembly", + "forks_url": "https://api.github.com/repos/caioflores/tetris-assembly/forks", + "keys_url": "https://api.github.com/repos/caioflores/tetris-assembly/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/caioflores/tetris-assembly/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/caioflores/tetris-assembly/teams", + "hooks_url": "https://api.github.com/repos/caioflores/tetris-assembly/hooks", + "issue_events_url": "https://api.github.com/repos/caioflores/tetris-assembly/issues/events{/number}", + "events_url": "https://api.github.com/repos/caioflores/tetris-assembly/events", + "assignees_url": "https://api.github.com/repos/caioflores/tetris-assembly/assignees{/user}", + "branches_url": "https://api.github.com/repos/caioflores/tetris-assembly/branches{/branch}", + "tags_url": "https://api.github.com/repos/caioflores/tetris-assembly/tags", + "blobs_url": "https://api.github.com/repos/caioflores/tetris-assembly/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/caioflores/tetris-assembly/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/caioflores/tetris-assembly/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/caioflores/tetris-assembly/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/caioflores/tetris-assembly/statuses/{sha}", + "languages_url": "https://api.github.com/repos/caioflores/tetris-assembly/languages", + "stargazers_url": "https://api.github.com/repos/caioflores/tetris-assembly/stargazers", + "contributors_url": "https://api.github.com/repos/caioflores/tetris-assembly/contributors", + "subscribers_url": "https://api.github.com/repos/caioflores/tetris-assembly/subscribers", + "subscription_url": "https://api.github.com/repos/caioflores/tetris-assembly/subscription", + "commits_url": "https://api.github.com/repos/caioflores/tetris-assembly/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/caioflores/tetris-assembly/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/caioflores/tetris-assembly/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/caioflores/tetris-assembly/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/caioflores/tetris-assembly/contents/{+path}", + "compare_url": "https://api.github.com/repos/caioflores/tetris-assembly/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/caioflores/tetris-assembly/merges", + "archive_url": "https://api.github.com/repos/caioflores/tetris-assembly/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/caioflores/tetris-assembly/downloads", + "issues_url": "https://api.github.com/repos/caioflores/tetris-assembly/issues{/number}", + "pulls_url": "https://api.github.com/repos/caioflores/tetris-assembly/pulls{/number}", + "milestones_url": "https://api.github.com/repos/caioflores/tetris-assembly/milestones{/number}", + "notifications_url": "https://api.github.com/repos/caioflores/tetris-assembly/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/caioflores/tetris-assembly/labels{/name}", + "releases_url": "https://api.github.com/repos/caioflores/tetris-assembly/releases{/id}", + "deployments_url": "https://api.github.com/repos/caioflores/tetris-assembly/deployments", + "created_at": "2013-05-02T19:30:29Z", + "updated_at": "2016-03-23T16:47:26Z", + "pushed_at": "2013-05-02T19:45:04Z", + "git_url": "git://github.com/caioflores/tetris-assembly.git", + "ssh_url": "git@github.com:caioflores/tetris-assembly.git", + "clone_url": "https://github.com/caioflores/tetris-assembly.git", + "svn_url": "https://github.com/caioflores/tetris-assembly", + "homepage": null, + "size": 100, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 11.870342 + }, + { + "id": 30859168, + "name": "NandToTetris", + "full_name": "markqian/NandToTetris", + "owner": { + "login": "markqian", + "id": 222635, + "avatar_url": "https://avatars.githubusercontent.com/u/222635?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/markqian", + "html_url": "https://github.com/markqian", + "followers_url": "https://api.github.com/users/markqian/followers", + "following_url": "https://api.github.com/users/markqian/following{/other_user}", + "gists_url": "https://api.github.com/users/markqian/gists{/gist_id}", + "starred_url": "https://api.github.com/users/markqian/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/markqian/subscriptions", + "organizations_url": "https://api.github.com/users/markqian/orgs", + "repos_url": "https://api.github.com/users/markqian/repos", + "events_url": "https://api.github.com/users/markqian/events{/privacy}", + "received_events_url": "https://api.github.com/users/markqian/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/markqian/NandToTetris", + "description": "Nand to Tetris projects", + "fork": false, + "url": "https://api.github.com/repos/markqian/NandToTetris", + "forks_url": "https://api.github.com/repos/markqian/NandToTetris/forks", + "keys_url": "https://api.github.com/repos/markqian/NandToTetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/markqian/NandToTetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/markqian/NandToTetris/teams", + "hooks_url": "https://api.github.com/repos/markqian/NandToTetris/hooks", + "issue_events_url": "https://api.github.com/repos/markqian/NandToTetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/markqian/NandToTetris/events", + "assignees_url": "https://api.github.com/repos/markqian/NandToTetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/markqian/NandToTetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/markqian/NandToTetris/tags", + "blobs_url": "https://api.github.com/repos/markqian/NandToTetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/markqian/NandToTetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/markqian/NandToTetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/markqian/NandToTetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/markqian/NandToTetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/markqian/NandToTetris/languages", + "stargazers_url": "https://api.github.com/repos/markqian/NandToTetris/stargazers", + "contributors_url": "https://api.github.com/repos/markqian/NandToTetris/contributors", + "subscribers_url": "https://api.github.com/repos/markqian/NandToTetris/subscribers", + "subscription_url": "https://api.github.com/repos/markqian/NandToTetris/subscription", + "commits_url": "https://api.github.com/repos/markqian/NandToTetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/markqian/NandToTetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/markqian/NandToTetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/markqian/NandToTetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/markqian/NandToTetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/markqian/NandToTetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/markqian/NandToTetris/merges", + "archive_url": "https://api.github.com/repos/markqian/NandToTetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/markqian/NandToTetris/downloads", + "issues_url": "https://api.github.com/repos/markqian/NandToTetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/markqian/NandToTetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/markqian/NandToTetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/markqian/NandToTetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/markqian/NandToTetris/labels{/name}", + "releases_url": "https://api.github.com/repos/markqian/NandToTetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/markqian/NandToTetris/deployments", + "created_at": "2015-02-16T08:08:18Z", + "updated_at": "2015-02-16T08:21:15Z", + "pushed_at": "2015-02-16T08:13:46Z", + "git_url": "git://github.com/markqian/NandToTetris.git", + "ssh_url": "git@github.com:markqian/NandToTetris.git", + "clone_url": "https://github.com/markqian/NandToTetris.git", + "svn_url": "https://github.com/markqian/NandToTetris", + "homepage": "", + "size": 332, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 6.8093047 + }, + { + "id": 35788139, + "name": "TetrisCE", + "full_name": "drdnar/TetrisCE", + "owner": { + "login": "drdnar", + "id": 9597986, + "avatar_url": "https://avatars.githubusercontent.com/u/9597986?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/drdnar", + "html_url": "https://github.com/drdnar", + "followers_url": "https://api.github.com/users/drdnar/followers", + "following_url": "https://api.github.com/users/drdnar/following{/other_user}", + "gists_url": "https://api.github.com/users/drdnar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/drdnar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/drdnar/subscriptions", + "organizations_url": "https://api.github.com/users/drdnar/orgs", + "repos_url": "https://api.github.com/users/drdnar/repos", + "events_url": "https://api.github.com/users/drdnar/events{/privacy}", + "received_events_url": "https://api.github.com/users/drdnar/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/drdnar/TetrisCE", + "description": "A Tetris clone for the TI-84 Plus CE", + "fork": false, + "url": "https://api.github.com/repos/drdnar/TetrisCE", + "forks_url": "https://api.github.com/repos/drdnar/TetrisCE/forks", + "keys_url": "https://api.github.com/repos/drdnar/TetrisCE/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/drdnar/TetrisCE/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/drdnar/TetrisCE/teams", + "hooks_url": "https://api.github.com/repos/drdnar/TetrisCE/hooks", + "issue_events_url": "https://api.github.com/repos/drdnar/TetrisCE/issues/events{/number}", + "events_url": "https://api.github.com/repos/drdnar/TetrisCE/events", + "assignees_url": "https://api.github.com/repos/drdnar/TetrisCE/assignees{/user}", + "branches_url": "https://api.github.com/repos/drdnar/TetrisCE/branches{/branch}", + "tags_url": "https://api.github.com/repos/drdnar/TetrisCE/tags", + "blobs_url": "https://api.github.com/repos/drdnar/TetrisCE/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/drdnar/TetrisCE/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/drdnar/TetrisCE/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/drdnar/TetrisCE/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/drdnar/TetrisCE/statuses/{sha}", + "languages_url": "https://api.github.com/repos/drdnar/TetrisCE/languages", + "stargazers_url": "https://api.github.com/repos/drdnar/TetrisCE/stargazers", + "contributors_url": "https://api.github.com/repos/drdnar/TetrisCE/contributors", + "subscribers_url": "https://api.github.com/repos/drdnar/TetrisCE/subscribers", + "subscription_url": "https://api.github.com/repos/drdnar/TetrisCE/subscription", + "commits_url": "https://api.github.com/repos/drdnar/TetrisCE/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/drdnar/TetrisCE/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/drdnar/TetrisCE/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/drdnar/TetrisCE/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/drdnar/TetrisCE/contents/{+path}", + "compare_url": "https://api.github.com/repos/drdnar/TetrisCE/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/drdnar/TetrisCE/merges", + "archive_url": "https://api.github.com/repos/drdnar/TetrisCE/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/drdnar/TetrisCE/downloads", + "issues_url": "https://api.github.com/repos/drdnar/TetrisCE/issues{/number}", + "pulls_url": "https://api.github.com/repos/drdnar/TetrisCE/pulls{/number}", + "milestones_url": "https://api.github.com/repos/drdnar/TetrisCE/milestones{/number}", + "notifications_url": "https://api.github.com/repos/drdnar/TetrisCE/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/drdnar/TetrisCE/labels{/name}", + "releases_url": "https://api.github.com/repos/drdnar/TetrisCE/releases{/id}", + "deployments_url": "https://api.github.com/repos/drdnar/TetrisCE/deployments", + "created_at": "2015-05-18T00:07:48Z", + "updated_at": "2016-02-01T22:21:14Z", + "pushed_at": "2016-03-23T22:21:39Z", + "git_url": "git://github.com/drdnar/TetrisCE.git", + "ssh_url": "git@github.com:drdnar/TetrisCE.git", + "clone_url": "https://github.com/drdnar/TetrisCE.git", + "svn_url": "https://github.com/drdnar/TetrisCE", + "homepage": null, + "size": 161, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 4.579539 + }, + { + "id": 26052006, + "name": "nand2tetris", + "full_name": "mudge/nand2tetris", + "owner": { + "login": "mudge", + "id": 287, + "avatar_url": "https://avatars.githubusercontent.com/u/287?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/mudge", + "html_url": "https://github.com/mudge", + "followers_url": "https://api.github.com/users/mudge/followers", + "following_url": "https://api.github.com/users/mudge/following{/other_user}", + "gists_url": "https://api.github.com/users/mudge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mudge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mudge/subscriptions", + "organizations_url": "https://api.github.com/users/mudge/orgs", + "repos_url": "https://api.github.com/users/mudge/repos", + "events_url": "https://api.github.com/users/mudge/events{/privacy}", + "received_events_url": "https://api.github.com/users/mudge/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/mudge/nand2tetris", + "description": "On-going solutions to the \"From NAND to Tetris\" exercises", + "fork": false, + "url": "https://api.github.com/repos/mudge/nand2tetris", + "forks_url": "https://api.github.com/repos/mudge/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/mudge/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mudge/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mudge/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/mudge/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/mudge/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/mudge/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/mudge/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/mudge/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/mudge/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/mudge/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mudge/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mudge/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mudge/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mudge/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mudge/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/mudge/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/mudge/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/mudge/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/mudge/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/mudge/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mudge/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mudge/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mudge/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mudge/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/mudge/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mudge/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/mudge/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mudge/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/mudge/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/mudge/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mudge/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mudge/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mudge/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/mudge/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/mudge/nand2tetris/deployments", + "created_at": "2014-11-01T13:58:17Z", + "updated_at": "2014-11-23T20:37:32Z", + "pushed_at": "2014-11-23T20:37:32Z", + "git_url": "git://github.com/mudge/nand2tetris.git", + "ssh_url": "git@github.com:mudge/nand2tetris.git", + "clone_url": "https://github.com/mudge/nand2tetris.git", + "svn_url": "https://github.com/mudge/nand2tetris", + "homepage": "http://www.nand2tetris.org/", + "size": 428, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 4.2394085 + }, + { + "id": 43105091, + "name": "buildAComputer", + "full_name": "timqian/buildAComputer", + "owner": { + "login": "timqian", + "id": 5512552, + "avatar_url": "https://avatars.githubusercontent.com/u/5512552?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/timqian", + "html_url": "https://github.com/timqian", + "followers_url": "https://api.github.com/users/timqian/followers", + "following_url": "https://api.github.com/users/timqian/following{/other_user}", + "gists_url": "https://api.github.com/users/timqian/gists{/gist_id}", + "starred_url": "https://api.github.com/users/timqian/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/timqian/subscriptions", + "organizations_url": "https://api.github.com/users/timqian/orgs", + "repos_url": "https://api.github.com/users/timqian/repos", + "events_url": "https://api.github.com/users/timqian/events{/privacy}", + "received_events_url": "https://api.github.com/users/timqian/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/timqian/buildAComputer", + "description": "My implementation of the project: [From NAND to Tetris](http://nand2tetris.org/)", + "fork": false, + "url": "https://api.github.com/repos/timqian/buildAComputer", + "forks_url": "https://api.github.com/repos/timqian/buildAComputer/forks", + "keys_url": "https://api.github.com/repos/timqian/buildAComputer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/timqian/buildAComputer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/timqian/buildAComputer/teams", + "hooks_url": "https://api.github.com/repos/timqian/buildAComputer/hooks", + "issue_events_url": "https://api.github.com/repos/timqian/buildAComputer/issues/events{/number}", + "events_url": "https://api.github.com/repos/timqian/buildAComputer/events", + "assignees_url": "https://api.github.com/repos/timqian/buildAComputer/assignees{/user}", + "branches_url": "https://api.github.com/repos/timqian/buildAComputer/branches{/branch}", + "tags_url": "https://api.github.com/repos/timqian/buildAComputer/tags", + "blobs_url": "https://api.github.com/repos/timqian/buildAComputer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/timqian/buildAComputer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/timqian/buildAComputer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/timqian/buildAComputer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/timqian/buildAComputer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/timqian/buildAComputer/languages", + "stargazers_url": "https://api.github.com/repos/timqian/buildAComputer/stargazers", + "contributors_url": "https://api.github.com/repos/timqian/buildAComputer/contributors", + "subscribers_url": "https://api.github.com/repos/timqian/buildAComputer/subscribers", + "subscription_url": "https://api.github.com/repos/timqian/buildAComputer/subscription", + "commits_url": "https://api.github.com/repos/timqian/buildAComputer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/timqian/buildAComputer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/timqian/buildAComputer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/timqian/buildAComputer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/timqian/buildAComputer/contents/{+path}", + "compare_url": "https://api.github.com/repos/timqian/buildAComputer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/timqian/buildAComputer/merges", + "archive_url": "https://api.github.com/repos/timqian/buildAComputer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/timqian/buildAComputer/downloads", + "issues_url": "https://api.github.com/repos/timqian/buildAComputer/issues{/number}", + "pulls_url": "https://api.github.com/repos/timqian/buildAComputer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/timqian/buildAComputer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/timqian/buildAComputer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/timqian/buildAComputer/labels{/name}", + "releases_url": "https://api.github.com/repos/timqian/buildAComputer/releases{/id}", + "deployments_url": "https://api.github.com/repos/timqian/buildAComputer/deployments", + "created_at": "2015-09-25T02:31:04Z", + "updated_at": "2015-09-25T05:07:22Z", + "pushed_at": "2015-10-03T02:44:20Z", + "git_url": "git://github.com/timqian/buildAComputer.git", + "ssh_url": "git@github.com:timqian/buildAComputer.git", + "clone_url": "https://github.com/timqian/buildAComputer.git", + "svn_url": "https://github.com/timqian/buildAComputer", + "homepage": "", + "size": 276, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.4189136 + }, + { + "id": 10192719, + "name": "NAND2Tetris", + "full_name": "BenTristem/NAND2Tetris", + "owner": { + "login": "BenTristem", + "id": 4483240, + "avatar_url": "https://avatars.githubusercontent.com/u/4483240?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/BenTristem", + "html_url": "https://github.com/BenTristem", + "followers_url": "https://api.github.com/users/BenTristem/followers", + "following_url": "https://api.github.com/users/BenTristem/following{/other_user}", + "gists_url": "https://api.github.com/users/BenTristem/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BenTristem/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BenTristem/subscriptions", + "organizations_url": "https://api.github.com/users/BenTristem/orgs", + "repos_url": "https://api.github.com/users/BenTristem/repos", + "events_url": "https://api.github.com/users/BenTristem/events{/privacy}", + "received_events_url": "https://api.github.com/users/BenTristem/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BenTristem/NAND2Tetris", + "description": "NAND2Tetris project", + "fork": false, + "url": "https://api.github.com/repos/BenTristem/NAND2Tetris", + "forks_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/forks", + "keys_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/teams", + "hooks_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/events", + "assignees_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/tags", + "blobs_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/subscription", + "commits_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/merges", + "archive_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/downloads", + "issues_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/BenTristem/NAND2Tetris/deployments", + "created_at": "2013-05-21T09:59:34Z", + "updated_at": "2014-12-15T20:08:02Z", + "pushed_at": "2013-05-22T10:23:40Z", + "git_url": "git://github.com/BenTristem/NAND2Tetris.git", + "ssh_url": "git@github.com:BenTristem/NAND2Tetris.git", + "clone_url": "https://github.com/BenTristem/NAND2Tetris.git", + "svn_url": "https://github.com/BenTristem/NAND2Tetris", + "homepage": null, + "size": 9840, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 31913292, + "name": "nand2tetris", + "full_name": "jennahowe/nand2tetris", + "owner": { + "login": "jennahowe", + "id": 7994800, + "avatar_url": "https://avatars.githubusercontent.com/u/7994800?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/jennahowe", + "html_url": "https://github.com/jennahowe", + "followers_url": "https://api.github.com/users/jennahowe/followers", + "following_url": "https://api.github.com/users/jennahowe/following{/other_user}", + "gists_url": "https://api.github.com/users/jennahowe/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jennahowe/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jennahowe/subscriptions", + "organizations_url": "https://api.github.com/users/jennahowe/orgs", + "repos_url": "https://api.github.com/users/jennahowe/repos", + "events_url": "https://api.github.com/users/jennahowe/events{/privacy}", + "received_events_url": "https://api.github.com/users/jennahowe/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jennahowe/nand2tetris", + "description": "My work on the nand2tetris (Elements of Computing Systems) MIT course http://www.nand2tetris.org/", + "fork": false, + "url": "https://api.github.com/repos/jennahowe/nand2tetris", + "forks_url": "https://api.github.com/repos/jennahowe/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/jennahowe/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jennahowe/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jennahowe/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/jennahowe/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/jennahowe/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/jennahowe/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/jennahowe/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/jennahowe/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/jennahowe/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/jennahowe/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jennahowe/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jennahowe/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jennahowe/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jennahowe/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jennahowe/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/jennahowe/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/jennahowe/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/jennahowe/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/jennahowe/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/jennahowe/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jennahowe/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jennahowe/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jennahowe/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jennahowe/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/jennahowe/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jennahowe/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/jennahowe/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jennahowe/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/jennahowe/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/jennahowe/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jennahowe/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jennahowe/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jennahowe/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/jennahowe/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/jennahowe/nand2tetris/deployments", + "created_at": "2015-03-09T17:44:28Z", + "updated_at": "2015-03-18T15:37:15Z", + "pushed_at": "2015-03-18T15:37:13Z", + "git_url": "git://github.com/jennahowe/nand2tetris.git", + "ssh_url": "git@github.com:jennahowe/nand2tetris.git", + "clone_url": "https://github.com/jennahowe/nand2tetris.git", + "svn_url": "https://github.com/jennahowe/nand2tetris", + "homepage": "", + "size": 348, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 32660807, + "name": "nand2tetris", + "full_name": "rayning0/nand2tetris", + "owner": { + "login": "rayning0", + "id": 1870151, + "avatar_url": "https://avatars.githubusercontent.com/u/1870151?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/rayning0", + "html_url": "https://github.com/rayning0", + "followers_url": "https://api.github.com/users/rayning0/followers", + "following_url": "https://api.github.com/users/rayning0/following{/other_user}", + "gists_url": "https://api.github.com/users/rayning0/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rayning0/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rayning0/subscriptions", + "organizations_url": "https://api.github.com/users/rayning0/orgs", + "repos_url": "https://api.github.com/users/rayning0/repos", + "events_url": "https://api.github.com/users/rayning0/events{/privacy}", + "received_events_url": "https://api.github.com/users/rayning0/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/rayning0/nand2tetris", + "description": "Nand2Tetris (http://www.nand2tetris.org), or Harvard CS 101. Building the hardware/software of a virtual computer from ground up.", + "fork": false, + "url": "https://api.github.com/repos/rayning0/nand2tetris", + "forks_url": "https://api.github.com/repos/rayning0/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/rayning0/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/rayning0/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/rayning0/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/rayning0/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/rayning0/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/rayning0/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/rayning0/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/rayning0/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/rayning0/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/rayning0/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/rayning0/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/rayning0/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/rayning0/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/rayning0/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/rayning0/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/rayning0/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/rayning0/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/rayning0/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/rayning0/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/rayning0/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/rayning0/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/rayning0/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/rayning0/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/rayning0/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/rayning0/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/rayning0/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/rayning0/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/rayning0/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/rayning0/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/rayning0/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/rayning0/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/rayning0/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/rayning0/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/rayning0/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/rayning0/nand2tetris/deployments", + "created_at": "2015-03-22T03:47:39Z", + "updated_at": "2015-03-22T15:06:03Z", + "pushed_at": "2015-03-22T15:04:05Z", + "git_url": "git://github.com/rayning0/nand2tetris.git", + "ssh_url": "git@github.com:rayning0/nand2tetris.git", + "clone_url": "https://github.com/rayning0/nand2tetris.git", + "svn_url": "https://github.com/rayning0/nand2tetris", + "homepage": null, + "size": 616, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 42123459, + "name": "nand2tetris", + "full_name": "filhoweuler/nand2tetris", + "owner": { + "login": "filhoweuler", + "id": 6530179, + "avatar_url": "https://avatars.githubusercontent.com/u/6530179?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/filhoweuler", + "html_url": "https://github.com/filhoweuler", + "followers_url": "https://api.github.com/users/filhoweuler/followers", + "following_url": "https://api.github.com/users/filhoweuler/following{/other_user}", + "gists_url": "https://api.github.com/users/filhoweuler/gists{/gist_id}", + "starred_url": "https://api.github.com/users/filhoweuler/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/filhoweuler/subscriptions", + "organizations_url": "https://api.github.com/users/filhoweuler/orgs", + "repos_url": "https://api.github.com/users/filhoweuler/repos", + "events_url": "https://api.github.com/users/filhoweuler/events{/privacy}", + "received_events_url": "https://api.github.com/users/filhoweuler/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/filhoweuler/nand2tetris", + "description": "Repositorio criado para salvar trabalhos da disciplina de AOC 2015/2", + "fork": false, + "url": "https://api.github.com/repos/filhoweuler/nand2tetris", + "forks_url": "https://api.github.com/repos/filhoweuler/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/filhoweuler/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/filhoweuler/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/filhoweuler/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/filhoweuler/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/filhoweuler/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/filhoweuler/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/filhoweuler/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/filhoweuler/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/filhoweuler/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/filhoweuler/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/filhoweuler/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/filhoweuler/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/filhoweuler/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/filhoweuler/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/filhoweuler/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/filhoweuler/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/filhoweuler/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/filhoweuler/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/filhoweuler/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/filhoweuler/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/filhoweuler/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/filhoweuler/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/filhoweuler/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/filhoweuler/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/filhoweuler/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/filhoweuler/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/filhoweuler/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/filhoweuler/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/filhoweuler/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/filhoweuler/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/filhoweuler/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/filhoweuler/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/filhoweuler/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/filhoweuler/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/filhoweuler/nand2tetris/deployments", + "created_at": "2015-09-08T16:04:45Z", + "updated_at": "2015-09-08T17:53:10Z", + "pushed_at": "2015-09-08T18:58:11Z", + "git_url": "git://github.com/filhoweuler/nand2tetris.git", + "ssh_url": "git@github.com:filhoweuler/nand2tetris.git", + "clone_url": "https://github.com/filhoweuler/nand2tetris.git", + "svn_url": "https://github.com/filhoweuler/nand2tetris", + "homepage": null, + "size": 308, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 50825970, + "name": "nand2tetris", + "full_name": "awayz/nand2tetris", + "owner": { + "login": "awayz", + "id": 10144695, + "avatar_url": "https://avatars.githubusercontent.com/u/10144695?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/awayz", + "html_url": "https://github.com/awayz", + "followers_url": "https://api.github.com/users/awayz/followers", + "following_url": "https://api.github.com/users/awayz/following{/other_user}", + "gists_url": "https://api.github.com/users/awayz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/awayz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/awayz/subscriptions", + "organizations_url": "https://api.github.com/users/awayz/orgs", + "repos_url": "https://api.github.com/users/awayz/repos", + "events_url": "https://api.github.com/users/awayz/events{/privacy}", + "received_events_url": "https://api.github.com/users/awayz/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/awayz/nand2tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/awayz/nand2tetris", + "forks_url": "https://api.github.com/repos/awayz/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/awayz/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/awayz/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/awayz/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/awayz/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/awayz/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/awayz/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/awayz/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/awayz/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/awayz/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/awayz/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/awayz/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/awayz/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/awayz/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/awayz/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/awayz/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/awayz/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/awayz/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/awayz/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/awayz/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/awayz/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/awayz/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/awayz/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/awayz/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/awayz/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/awayz/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/awayz/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/awayz/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/awayz/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/awayz/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/awayz/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/awayz/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/awayz/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/awayz/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/awayz/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/awayz/nand2tetris/deployments", + "created_at": "2016-02-01T08:37:47Z", + "updated_at": "2016-02-03T04:57:32Z", + "pushed_at": "2016-02-23T15:03:07Z", + "git_url": "git://github.com/awayz/nand2tetris.git", + "ssh_url": "git@github.com:awayz/nand2tetris.git", + "clone_url": "https://github.com/awayz/nand2tetris.git", + "svn_url": "https://github.com/awayz/nand2tetris", + "homepage": null, + "size": 7409, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 9607745, + "name": "nand2tetris", + "full_name": "AaronRandall/nand2tetris", + "owner": { + "login": "AaronRandall", + "id": 2228462, + "avatar_url": "https://avatars.githubusercontent.com/u/2228462?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/AaronRandall", + "html_url": "https://github.com/AaronRandall", + "followers_url": "https://api.github.com/users/AaronRandall/followers", + "following_url": "https://api.github.com/users/AaronRandall/following{/other_user}", + "gists_url": "https://api.github.com/users/AaronRandall/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AaronRandall/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AaronRandall/subscriptions", + "organizations_url": "https://api.github.com/users/AaronRandall/orgs", + "repos_url": "https://api.github.com/users/AaronRandall/repos", + "events_url": "https://api.github.com/users/AaronRandall/events{/privacy}", + "received_events_url": "https://api.github.com/users/AaronRandall/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/AaronRandall/nand2tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/AaronRandall/nand2tetris", + "forks_url": "https://api.github.com/repos/AaronRandall/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/AaronRandall/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/AaronRandall/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/AaronRandall/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/AaronRandall/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/AaronRandall/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/AaronRandall/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/AaronRandall/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/AaronRandall/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/AaronRandall/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/AaronRandall/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/AaronRandall/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/AaronRandall/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/AaronRandall/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/AaronRandall/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/AaronRandall/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/AaronRandall/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/AaronRandall/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/AaronRandall/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/AaronRandall/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/AaronRandall/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/AaronRandall/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/AaronRandall/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/AaronRandall/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/AaronRandall/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/AaronRandall/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/AaronRandall/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/AaronRandall/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/AaronRandall/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/AaronRandall/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/AaronRandall/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/AaronRandall/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/AaronRandall/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/AaronRandall/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/AaronRandall/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/AaronRandall/nand2tetris/deployments", + "created_at": "2013-04-22T20:02:07Z", + "updated_at": "2016-04-05T07:34:01Z", + "pushed_at": "2016-04-05T07:33:25Z", + "git_url": "git://github.com/AaronRandall/nand2tetris.git", + "ssh_url": "git@github.com:AaronRandall/nand2tetris.git", + "clone_url": "https://github.com/AaronRandall/nand2tetris.git", + "svn_url": "https://github.com/AaronRandall/nand2tetris", + "homepage": null, + "size": 636, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "open_issues_count": 1, + "forks": 1, + "open_issues": 1, + "watchers": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 28212995, + "name": "nand2tetris", + "full_name": "bgx/nand2tetris", + "owner": { + "login": "bgx", + "id": 9850511, + "avatar_url": "https://avatars.githubusercontent.com/u/9850511?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/bgx", + "html_url": "https://github.com/bgx", + "followers_url": "https://api.github.com/users/bgx/followers", + "following_url": "https://api.github.com/users/bgx/following{/other_user}", + "gists_url": "https://api.github.com/users/bgx/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bgx/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bgx/subscriptions", + "organizations_url": "https://api.github.com/users/bgx/orgs", + "repos_url": "https://api.github.com/users/bgx/repos", + "events_url": "https://api.github.com/users/bgx/events{/privacy}", + "received_events_url": "https://api.github.com/users/bgx/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/bgx/nand2tetris", + "description": "Building a simple yet powerful computer system from the ground up. (Basic hardware platform + modern software hierarchy)", + "fork": false, + "url": "https://api.github.com/repos/bgx/nand2tetris", + "forks_url": "https://api.github.com/repos/bgx/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/bgx/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bgx/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bgx/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/bgx/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/bgx/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/bgx/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/bgx/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/bgx/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/bgx/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/bgx/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bgx/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bgx/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bgx/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bgx/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bgx/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/bgx/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/bgx/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/bgx/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/bgx/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/bgx/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bgx/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bgx/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bgx/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bgx/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/bgx/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bgx/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/bgx/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bgx/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/bgx/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/bgx/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bgx/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bgx/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bgx/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/bgx/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/bgx/nand2tetris/deployments", + "created_at": "2014-12-19T03:42:45Z", + "updated_at": "2016-04-20T12:28:42Z", + "pushed_at": "2016-04-03T02:53:44Z", + "git_url": "git://github.com/bgx/nand2tetris.git", + "ssh_url": "git@github.com:bgx/nand2tetris.git", + "clone_url": "https://github.com/bgx/nand2tetris.git", + "svn_url": "https://github.com/bgx/nand2tetris", + "homepage": "", + "size": 1090, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 60416177, + "name": "nand2tetris", + "full_name": "leideng/nand2tetris", + "owner": { + "login": "leideng", + "id": 7011915, + "avatar_url": "https://avatars.githubusercontent.com/u/7011915?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/leideng", + "html_url": "https://github.com/leideng", + "followers_url": "https://api.github.com/users/leideng/followers", + "following_url": "https://api.github.com/users/leideng/following{/other_user}", + "gists_url": "https://api.github.com/users/leideng/gists{/gist_id}", + "starred_url": "https://api.github.com/users/leideng/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/leideng/subscriptions", + "organizations_url": "https://api.github.com/users/leideng/orgs", + "repos_url": "https://api.github.com/users/leideng/repos", + "events_url": "https://api.github.com/users/leideng/events{/privacy}", + "received_events_url": "https://api.github.com/users/leideng/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/leideng/nand2tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/leideng/nand2tetris", + "forks_url": "https://api.github.com/repos/leideng/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/leideng/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/leideng/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/leideng/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/leideng/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/leideng/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/leideng/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/leideng/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/leideng/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/leideng/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/leideng/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/leideng/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/leideng/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/leideng/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/leideng/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/leideng/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/leideng/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/leideng/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/leideng/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/leideng/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/leideng/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/leideng/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/leideng/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/leideng/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/leideng/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/leideng/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/leideng/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/leideng/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/leideng/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/leideng/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/leideng/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/leideng/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/leideng/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/leideng/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/leideng/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/leideng/nand2tetris/deployments", + "created_at": "2016-06-04T15:13:35Z", + "updated_at": "2016-06-11T07:00:12Z", + "pushed_at": "2016-06-19T05:38:07Z", + "git_url": "git://github.com/leideng/nand2tetris.git", + "ssh_url": "git@github.com:leideng/nand2tetris.git", + "clone_url": "https://github.com/leideng/nand2tetris.git", + "svn_url": "https://github.com/leideng/nand2tetris", + "homepage": null, + "size": 729, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 42820897, + "name": "nand2tetris", + "full_name": "TheVainBoy/nand2tetris", + "owner": { + "login": "TheVainBoy", + "id": 14372674, + "avatar_url": "https://avatars.githubusercontent.com/u/14372674?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/TheVainBoy", + "html_url": "https://github.com/TheVainBoy", + "followers_url": "https://api.github.com/users/TheVainBoy/followers", + "following_url": "https://api.github.com/users/TheVainBoy/following{/other_user}", + "gists_url": "https://api.github.com/users/TheVainBoy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TheVainBoy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TheVainBoy/subscriptions", + "organizations_url": "https://api.github.com/users/TheVainBoy/orgs", + "repos_url": "https://api.github.com/users/TheVainBoy/repos", + "events_url": "https://api.github.com/users/TheVainBoy/events{/privacy}", + "received_events_url": "https://api.github.com/users/TheVainBoy/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/TheVainBoy/nand2tetris", + "description": "Exercises from The Elements of Computer Systems", + "fork": false, + "url": "https://api.github.com/repos/TheVainBoy/nand2tetris", + "forks_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/TheVainBoy/nand2tetris/deployments", + "created_at": "2015-09-20T16:49:44Z", + "updated_at": "2016-03-04T18:08:41Z", + "pushed_at": "2016-05-26T19:14:38Z", + "git_url": "git://github.com/TheVainBoy/nand2tetris.git", + "ssh_url": "git@github.com:TheVainBoy/nand2tetris.git", + "clone_url": "https://github.com/TheVainBoy/nand2tetris.git", + "svn_url": "https://github.com/TheVainBoy/nand2tetris", + "homepage": null, + "size": 1062, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.255108 + }, + { + "id": 33394335, + "name": "my_nand2tetris", + "full_name": "snufkon/my_nand2tetris", + "owner": { + "login": "snufkon", + "id": 490414, + "avatar_url": "https://avatars.githubusercontent.com/u/490414?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/snufkon", + "html_url": "https://github.com/snufkon", + "followers_url": "https://api.github.com/users/snufkon/followers", + "following_url": "https://api.github.com/users/snufkon/following{/other_user}", + "gists_url": "https://api.github.com/users/snufkon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/snufkon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/snufkon/subscriptions", + "organizations_url": "https://api.github.com/users/snufkon/orgs", + "repos_url": "https://api.github.com/users/snufkon/repos", + "events_url": "https://api.github.com/users/snufkon/events{/privacy}", + "received_events_url": "https://api.github.com/users/snufkon/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/snufkon/my_nand2tetris", + "description": "「コンピュータシステムの理論と実装」演習用リポジトリ", + "fork": false, + "url": "https://api.github.com/repos/snufkon/my_nand2tetris", + "forks_url": "https://api.github.com/repos/snufkon/my_nand2tetris/forks", + "keys_url": "https://api.github.com/repos/snufkon/my_nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/snufkon/my_nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/snufkon/my_nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/snufkon/my_nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/snufkon/my_nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/snufkon/my_nand2tetris/events", + "assignees_url": "https://api.github.com/repos/snufkon/my_nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/snufkon/my_nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/snufkon/my_nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/snufkon/my_nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/snufkon/my_nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/snufkon/my_nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/snufkon/my_nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/snufkon/my_nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/snufkon/my_nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/snufkon/my_nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/snufkon/my_nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/snufkon/my_nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/snufkon/my_nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/snufkon/my_nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/snufkon/my_nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/snufkon/my_nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/snufkon/my_nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/snufkon/my_nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/snufkon/my_nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/snufkon/my_nand2tetris/merges", + "archive_url": "https://api.github.com/repos/snufkon/my_nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/snufkon/my_nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/snufkon/my_nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/snufkon/my_nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/snufkon/my_nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/snufkon/my_nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/snufkon/my_nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/snufkon/my_nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/snufkon/my_nand2tetris/deployments", + "created_at": "2015-04-04T04:34:19Z", + "updated_at": "2015-10-03T13:48:48Z", + "pushed_at": "2015-08-16T06:49:12Z", + "git_url": "git://github.com/snufkon/my_nand2tetris.git", + "ssh_url": "git@github.com:snufkon/my_nand2tetris.git", + "clone_url": "https://github.com/snufkon/my_nand2tetris.git", + "svn_url": "https://github.com/snufkon/my_nand2tetris", + "homepage": null, + "size": 2636, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.231357 + }, + { + "id": 39799066, + "name": "nand2tetris", + "full_name": "RickyBoyd/nand2tetris", + "owner": { + "login": "RickyBoyd", + "id": 5221289, + "avatar_url": "https://avatars.githubusercontent.com/u/5221289?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/RickyBoyd", + "html_url": "https://github.com/RickyBoyd", + "followers_url": "https://api.github.com/users/RickyBoyd/followers", + "following_url": "https://api.github.com/users/RickyBoyd/following{/other_user}", + "gists_url": "https://api.github.com/users/RickyBoyd/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RickyBoyd/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RickyBoyd/subscriptions", + "organizations_url": "https://api.github.com/users/RickyBoyd/orgs", + "repos_url": "https://api.github.com/users/RickyBoyd/repos", + "events_url": "https://api.github.com/users/RickyBoyd/events{/privacy}", + "received_events_url": "https://api.github.com/users/RickyBoyd/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/RickyBoyd/nand2tetris", + "description": "Building a computer out of a hardware simulation language, making an assembler for the computer and then a simple OS.", + "fork": false, + "url": "https://api.github.com/repos/RickyBoyd/nand2tetris", + "forks_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/RickyBoyd/nand2tetris/deployments", + "created_at": "2015-07-27T21:33:58Z", + "updated_at": "2016-02-14T02:06:41Z", + "pushed_at": "2015-08-11T18:11:12Z", + "git_url": "git://github.com/RickyBoyd/nand2tetris.git", + "ssh_url": "git@github.com:RickyBoyd/nand2tetris.git", + "clone_url": "https://github.com/RickyBoyd/nand2tetris.git", + "svn_url": "https://github.com/RickyBoyd/nand2tetris", + "homepage": null, + "size": 372, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.231357 + }, + { + "id": 53402249, + "name": "nand2tetris", + "full_name": "shahamran/nand2tetris", + "owner": { + "login": "shahamran", + "id": 10813499, + "avatar_url": "https://avatars.githubusercontent.com/u/10813499?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/shahamran", + "html_url": "https://github.com/shahamran", + "followers_url": "https://api.github.com/users/shahamran/followers", + "following_url": "https://api.github.com/users/shahamran/following{/other_user}", + "gists_url": "https://api.github.com/users/shahamran/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shahamran/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shahamran/subscriptions", + "organizations_url": "https://api.github.com/users/shahamran/orgs", + "repos_url": "https://api.github.com/users/shahamran/repos", + "events_url": "https://api.github.com/users/shahamran/events{/privacy}", + "received_events_url": "https://api.github.com/users/shahamran/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/shahamran/nand2tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/shahamran/nand2tetris", + "forks_url": "https://api.github.com/repos/shahamran/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/shahamran/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/shahamran/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/shahamran/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/shahamran/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/shahamran/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/shahamran/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/shahamran/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/shahamran/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/shahamran/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/shahamran/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/shahamran/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/shahamran/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/shahamran/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/shahamran/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/shahamran/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/shahamran/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/shahamran/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/shahamran/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/shahamran/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/shahamran/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/shahamran/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/shahamran/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/shahamran/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/shahamran/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/shahamran/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/shahamran/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/shahamran/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/shahamran/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/shahamran/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/shahamran/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/shahamran/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/shahamran/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/shahamran/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/shahamran/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/shahamran/nand2tetris/deployments", + "created_at": "2016-03-08T10:05:57Z", + "updated_at": "2016-05-24T12:03:07Z", + "pushed_at": "2016-06-20T09:49:38Z", + "git_url": "git://github.com/shahamran/nand2tetris.git", + "ssh_url": "git@github.com:shahamran/nand2tetris.git", + "clone_url": "https://github.com/shahamran/nand2tetris.git", + "svn_url": "https://github.com/shahamran/nand2tetris", + "homepage": null, + "size": 1863, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.231357 + }, + { + "id": 18867463, + "name": "nand2tetris", + "full_name": "mmmries/nand2tetris", + "owner": { + "login": "mmmries", + "id": 80008, + "avatar_url": "https://avatars.githubusercontent.com/u/80008?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/mmmries", + "html_url": "https://github.com/mmmries", + "followers_url": "https://api.github.com/users/mmmries/followers", + "following_url": "https://api.github.com/users/mmmries/following{/other_user}", + "gists_url": "https://api.github.com/users/mmmries/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mmmries/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mmmries/subscriptions", + "organizations_url": "https://api.github.com/users/mmmries/orgs", + "repos_url": "https://api.github.com/users/mmmries/repos", + "events_url": "https://api.github.com/users/mmmries/events{/privacy}", + "received_events_url": "https://api.github.com/users/mmmries/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/mmmries/nand2tetris", + "description": "my solutions for the nand2tetris course projects", + "fork": false, + "url": "https://api.github.com/repos/mmmries/nand2tetris", + "forks_url": "https://api.github.com/repos/mmmries/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/mmmries/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mmmries/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mmmries/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/mmmries/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/mmmries/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/mmmries/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/mmmries/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/mmmries/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/mmmries/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/mmmries/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mmmries/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mmmries/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mmmries/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mmmries/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mmmries/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/mmmries/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/mmmries/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/mmmries/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/mmmries/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/mmmries/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mmmries/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mmmries/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mmmries/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mmmries/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/mmmries/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mmmries/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/mmmries/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mmmries/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/mmmries/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/mmmries/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mmmries/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mmmries/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mmmries/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/mmmries/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/mmmries/nand2tetris/deployments", + "created_at": "2014-04-17T05:18:05Z", + "updated_at": "2015-05-09T15:27:02Z", + "pushed_at": "2014-10-04T20:11:24Z", + "git_url": "git://github.com/mmmries/nand2tetris.git", + "ssh_url": "git@github.com:mmmries/nand2tetris.git", + "clone_url": "https://github.com/mmmries/nand2tetris.git", + "svn_url": "https://github.com/mmmries/nand2tetris", + "homepage": null, + "size": 772, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "open_issues_count": 0, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 3.2283893 + }, + { + "id": 35750960, + "name": "Nand2Tetris", + "full_name": "shunsuke227ono/Nand2Tetris", + "owner": { + "login": "shunsuke227ono", + "id": 7357864, + "avatar_url": "https://avatars.githubusercontent.com/u/7357864?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/shunsuke227ono", + "html_url": "https://github.com/shunsuke227ono", + "followers_url": "https://api.github.com/users/shunsuke227ono/followers", + "following_url": "https://api.github.com/users/shunsuke227ono/following{/other_user}", + "gists_url": "https://api.github.com/users/shunsuke227ono/gists{/gist_id}", + "starred_url": "https://api.github.com/users/shunsuke227ono/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/shunsuke227ono/subscriptions", + "organizations_url": "https://api.github.com/users/shunsuke227ono/orgs", + "repos_url": "https://api.github.com/users/shunsuke227ono/repos", + "events_url": "https://api.github.com/users/shunsuke227ono/events{/privacy}", + "received_events_url": "https://api.github.com/users/shunsuke227ono/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/shunsuke227ono/Nand2Tetris", + "description": "Learn computer system with a course provided by MIT http://www.nand2tetris.org/", + "fork": false, + "url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris", + "forks_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/shunsuke227ono/Nand2Tetris/deployments", + "created_at": "2015-05-17T03:53:10Z", + "updated_at": "2015-09-21T11:34:50Z", + "pushed_at": "2015-06-07T13:57:47Z", + "git_url": "git://github.com/shunsuke227ono/Nand2Tetris.git", + "ssh_url": "git@github.com:shunsuke227ono/Nand2Tetris.git", + "clone_url": "https://github.com/shunsuke227ono/Nand2Tetris.git", + "svn_url": "https://github.com/shunsuke227ono/Nand2Tetris", + "homepage": "", + "size": 1996, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.2283893 + }, + { + "id": 9521411, + "name": "nand2tetris", + "full_name": "jtdowney/nand2tetris", + "owner": { + "login": "jtdowney", + "id": 44654, + "avatar_url": "https://avatars.githubusercontent.com/u/44654?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/jtdowney", + "html_url": "https://github.com/jtdowney", + "followers_url": "https://api.github.com/users/jtdowney/followers", + "following_url": "https://api.github.com/users/jtdowney/following{/other_user}", + "gists_url": "https://api.github.com/users/jtdowney/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jtdowney/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jtdowney/subscriptions", + "organizations_url": "https://api.github.com/users/jtdowney/orgs", + "repos_url": "https://api.github.com/users/jtdowney/repos", + "events_url": "https://api.github.com/users/jtdowney/events{/privacy}", + "received_events_url": "https://api.github.com/users/jtdowney/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jtdowney/nand2tetris", + "description": "My solutions to the projects in The Elements of Computing Systems", + "fork": false, + "url": "https://api.github.com/repos/jtdowney/nand2tetris", + "forks_url": "https://api.github.com/repos/jtdowney/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/jtdowney/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jtdowney/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jtdowney/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/jtdowney/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/jtdowney/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/jtdowney/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/jtdowney/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/jtdowney/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/jtdowney/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/jtdowney/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jtdowney/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jtdowney/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jtdowney/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jtdowney/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jtdowney/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/jtdowney/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/jtdowney/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/jtdowney/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/jtdowney/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/jtdowney/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jtdowney/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jtdowney/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jtdowney/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jtdowney/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/jtdowney/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jtdowney/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/jtdowney/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jtdowney/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/jtdowney/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/jtdowney/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jtdowney/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jtdowney/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jtdowney/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/jtdowney/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/jtdowney/nand2tetris/deployments", + "created_at": "2013-04-18T12:44:58Z", + "updated_at": "2016-03-28T15:23:12Z", + "pushed_at": "2013-04-18T12:47:54Z", + "git_url": "git://github.com/jtdowney/nand2tetris.git", + "ssh_url": "git@github.com:jtdowney/nand2tetris.git", + "clone_url": "https://github.com/jtdowney/nand2tetris.git", + "svn_url": "https://github.com/jtdowney/nand2tetris", + "homepage": null, + "size": 340, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.2283893 + }, + { + "id": 15288509, + "name": "nand2tetris", + "full_name": "prec/nand2tetris", + "owner": { + "login": "prec", + "id": 2953301, + "avatar_url": "https://avatars.githubusercontent.com/u/2953301?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/prec", + "html_url": "https://github.com/prec", + "followers_url": "https://api.github.com/users/prec/followers", + "following_url": "https://api.github.com/users/prec/following{/other_user}", + "gists_url": "https://api.github.com/users/prec/gists{/gist_id}", + "starred_url": "https://api.github.com/users/prec/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/prec/subscriptions", + "organizations_url": "https://api.github.com/users/prec/orgs", + "repos_url": "https://api.github.com/users/prec/repos", + "events_url": "https://api.github.com/users/prec/events{/privacy}", + "received_events_url": "https://api.github.com/users/prec/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/prec/nand2tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/prec/nand2tetris", + "forks_url": "https://api.github.com/repos/prec/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/prec/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/prec/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/prec/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/prec/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/prec/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/prec/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/prec/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/prec/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/prec/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/prec/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/prec/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/prec/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/prec/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/prec/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/prec/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/prec/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/prec/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/prec/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/prec/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/prec/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/prec/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/prec/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/prec/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/prec/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/prec/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/prec/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/prec/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/prec/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/prec/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/prec/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/prec/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/prec/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/prec/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/prec/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/prec/nand2tetris/deployments", + "created_at": "2013-12-18T16:39:16Z", + "updated_at": "2014-01-13T04:22:42Z", + "pushed_at": "2014-01-13T04:22:42Z", + "git_url": "git://github.com/prec/nand2tetris.git", + "ssh_url": "git@github.com:prec/nand2tetris.git", + "clone_url": "https://github.com/prec/nand2tetris.git", + "svn_url": "https://github.com/prec/nand2tetris", + "homepage": null, + "size": 416, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.212811 + }, + { + "id": 31266055, + "name": "nand2tetris", + "full_name": "josephahn/nand2tetris", + "owner": { + "login": "josephahn", + "id": 4207073, + "avatar_url": "https://avatars.githubusercontent.com/u/4207073?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/josephahn", + "html_url": "https://github.com/josephahn", + "followers_url": "https://api.github.com/users/josephahn/followers", + "following_url": "https://api.github.com/users/josephahn/following{/other_user}", + "gists_url": "https://api.github.com/users/josephahn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/josephahn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/josephahn/subscriptions", + "organizations_url": "https://api.github.com/users/josephahn/orgs", + "repos_url": "https://api.github.com/users/josephahn/repos", + "events_url": "https://api.github.com/users/josephahn/events{/privacy}", + "received_events_url": "https://api.github.com/users/josephahn/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/josephahn/nand2tetris", + "description": "nand2tetris projects", + "fork": false, + "url": "https://api.github.com/repos/josephahn/nand2tetris", + "forks_url": "https://api.github.com/repos/josephahn/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/josephahn/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/josephahn/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/josephahn/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/josephahn/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/josephahn/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/josephahn/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/josephahn/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/josephahn/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/josephahn/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/josephahn/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/josephahn/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/josephahn/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/josephahn/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/josephahn/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/josephahn/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/josephahn/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/josephahn/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/josephahn/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/josephahn/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/josephahn/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/josephahn/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/josephahn/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/josephahn/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/josephahn/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/josephahn/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/josephahn/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/josephahn/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/josephahn/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/josephahn/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/josephahn/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/josephahn/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/josephahn/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/josephahn/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/josephahn/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/josephahn/nand2tetris/deployments", + "created_at": "2015-02-24T15:20:23Z", + "updated_at": "2015-03-02T00:13:39Z", + "pushed_at": "2015-03-02T00:13:39Z", + "git_url": "git://github.com/josephahn/nand2tetris.git", + "ssh_url": "git@github.com:josephahn/nand2tetris.git", + "clone_url": "https://github.com/josephahn/nand2tetris.git", + "svn_url": "https://github.com/josephahn/nand2tetris", + "homepage": "", + "size": 416, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.212811 + }, + { + "id": 50947153, + "name": "nand-to-tetris", + "full_name": "grugway/nand-to-tetris", + "owner": { + "login": "grugway", + "id": 8777674, + "avatar_url": "https://avatars.githubusercontent.com/u/8777674?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/grugway", + "html_url": "https://github.com/grugway", + "followers_url": "https://api.github.com/users/grugway/followers", + "following_url": "https://api.github.com/users/grugway/following{/other_user}", + "gists_url": "https://api.github.com/users/grugway/gists{/gist_id}", + "starred_url": "https://api.github.com/users/grugway/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/grugway/subscriptions", + "organizations_url": "https://api.github.com/users/grugway/orgs", + "repos_url": "https://api.github.com/users/grugway/repos", + "events_url": "https://api.github.com/users/grugway/events{/privacy}", + "received_events_url": "https://api.github.com/users/grugway/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/grugway/nand-to-tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/grugway/nand-to-tetris", + "forks_url": "https://api.github.com/repos/grugway/nand-to-tetris/forks", + "keys_url": "https://api.github.com/repos/grugway/nand-to-tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/grugway/nand-to-tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/grugway/nand-to-tetris/teams", + "hooks_url": "https://api.github.com/repos/grugway/nand-to-tetris/hooks", + "issue_events_url": "https://api.github.com/repos/grugway/nand-to-tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/grugway/nand-to-tetris/events", + "assignees_url": "https://api.github.com/repos/grugway/nand-to-tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/grugway/nand-to-tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/grugway/nand-to-tetris/tags", + "blobs_url": "https://api.github.com/repos/grugway/nand-to-tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/grugway/nand-to-tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/grugway/nand-to-tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/grugway/nand-to-tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/grugway/nand-to-tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/grugway/nand-to-tetris/languages", + "stargazers_url": "https://api.github.com/repos/grugway/nand-to-tetris/stargazers", + "contributors_url": "https://api.github.com/repos/grugway/nand-to-tetris/contributors", + "subscribers_url": "https://api.github.com/repos/grugway/nand-to-tetris/subscribers", + "subscription_url": "https://api.github.com/repos/grugway/nand-to-tetris/subscription", + "commits_url": "https://api.github.com/repos/grugway/nand-to-tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/grugway/nand-to-tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/grugway/nand-to-tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/grugway/nand-to-tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/grugway/nand-to-tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/grugway/nand-to-tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/grugway/nand-to-tetris/merges", + "archive_url": "https://api.github.com/repos/grugway/nand-to-tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/grugway/nand-to-tetris/downloads", + "issues_url": "https://api.github.com/repos/grugway/nand-to-tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/grugway/nand-to-tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/grugway/nand-to-tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/grugway/nand-to-tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/grugway/nand-to-tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/grugway/nand-to-tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/grugway/nand-to-tetris/deployments", + "created_at": "2016-02-02T19:47:48Z", + "updated_at": "2016-02-05T08:57:03Z", + "pushed_at": "2016-02-09T07:57:22Z", + "git_url": "git://github.com/grugway/nand-to-tetris.git", + "ssh_url": "git@github.com:grugway/nand-to-tetris.git", + "clone_url": "https://github.com/grugway/nand-to-tetris.git", + "svn_url": "https://github.com/grugway/nand-to-tetris", + "homepage": null, + "size": 64709, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.212811 + }, + { + "id": 52996494, + "name": "Nand2Tetris", + "full_name": "cgalbiati/Nand2Tetris", + "owner": { + "login": "cgalbiati", + "id": 12814449, + "avatar_url": "https://avatars.githubusercontent.com/u/12814449?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/cgalbiati", + "html_url": "https://github.com/cgalbiati", + "followers_url": "https://api.github.com/users/cgalbiati/followers", + "following_url": "https://api.github.com/users/cgalbiati/following{/other_user}", + "gists_url": "https://api.github.com/users/cgalbiati/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cgalbiati/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cgalbiati/subscriptions", + "organizations_url": "https://api.github.com/users/cgalbiati/orgs", + "repos_url": "https://api.github.com/users/cgalbiati/repos", + "events_url": "https://api.github.com/users/cgalbiati/events{/privacy}", + "received_events_url": "https://api.github.com/users/cgalbiati/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/cgalbiati/Nand2Tetris", + "description": "Repository of my work for \"The Elements of Computing Systems\"", + "fork": false, + "url": "https://api.github.com/repos/cgalbiati/Nand2Tetris", + "forks_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/cgalbiati/Nand2Tetris/deployments", + "created_at": "2016-03-02T21:07:01Z", + "updated_at": "2016-04-23T03:32:50Z", + "pushed_at": "2016-04-12T01:27:51Z", + "git_url": "git://github.com/cgalbiati/Nand2Tetris.git", + "ssh_url": "git@github.com:cgalbiati/Nand2Tetris.git", + "clone_url": "https://github.com/cgalbiati/Nand2Tetris.git", + "svn_url": "https://github.com/cgalbiati/Nand2Tetris", + "homepage": "", + "size": 527, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.212811 + }, + { + "id": 38170270, + "name": "Nand2Tetris", + "full_name": "Kourchenko/Nand2Tetris", + "owner": { + "login": "Kourchenko", + "id": 5885241, + "avatar_url": "https://avatars.githubusercontent.com/u/5885241?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Kourchenko", + "html_url": "https://github.com/Kourchenko", + "followers_url": "https://api.github.com/users/Kourchenko/followers", + "following_url": "https://api.github.com/users/Kourchenko/following{/other_user}", + "gists_url": "https://api.github.com/users/Kourchenko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Kourchenko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Kourchenko/subscriptions", + "organizations_url": "https://api.github.com/users/Kourchenko/orgs", + "repos_url": "https://api.github.com/users/Kourchenko/repos", + "events_url": "https://api.github.com/users/Kourchenko/events{/privacy}", + "received_events_url": "https://api.github.com/users/Kourchenko/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Kourchenko/Nand2Tetris", + "description": "Logic Gates for Toy-Compiler: JackCompiler", + "fork": false, + "url": "https://api.github.com/repos/Kourchenko/Nand2Tetris", + "forks_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/Kourchenko/Nand2Tetris/deployments", + "created_at": "2015-06-27T18:15:41Z", + "updated_at": "2016-04-29T06:31:19Z", + "pushed_at": "2015-12-16T23:22:43Z", + "git_url": "git://github.com/Kourchenko/Nand2Tetris.git", + "ssh_url": "git@github.com:Kourchenko/Nand2Tetris.git", + "clone_url": "https://github.com/Kourchenko/Nand2Tetris.git", + "svn_url": "https://github.com/Kourchenko/Nand2Tetris", + "homepage": "", + "size": 545, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 3.212811 + }, + { + "id": 36626983, + "name": "n2t-hack-assember", + "full_name": "werelax/n2t-hack-assember", + "owner": { + "login": "werelax", + "id": 774672, + "avatar_url": "https://avatars.githubusercontent.com/u/774672?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/werelax", + "html_url": "https://github.com/werelax", + "followers_url": "https://api.github.com/users/werelax/followers", + "following_url": "https://api.github.com/users/werelax/following{/other_user}", + "gists_url": "https://api.github.com/users/werelax/gists{/gist_id}", + "starred_url": "https://api.github.com/users/werelax/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/werelax/subscriptions", + "organizations_url": "https://api.github.com/users/werelax/orgs", + "repos_url": "https://api.github.com/users/werelax/repos", + "events_url": "https://api.github.com/users/werelax/events{/privacy}", + "received_events_url": "https://api.github.com/users/werelax/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/werelax/n2t-hack-assember", + "description": "Assembler for the simple symbolic language of the \"Hack\" computer defined in the Nand 2 Tetris course from coursera.com. In Emacs Lisp :)", + "fork": false, + "url": "https://api.github.com/repos/werelax/n2t-hack-assember", + "forks_url": "https://api.github.com/repos/werelax/n2t-hack-assember/forks", + "keys_url": "https://api.github.com/repos/werelax/n2t-hack-assember/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/werelax/n2t-hack-assember/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/werelax/n2t-hack-assember/teams", + "hooks_url": "https://api.github.com/repos/werelax/n2t-hack-assember/hooks", + "issue_events_url": "https://api.github.com/repos/werelax/n2t-hack-assember/issues/events{/number}", + "events_url": "https://api.github.com/repos/werelax/n2t-hack-assember/events", + "assignees_url": "https://api.github.com/repos/werelax/n2t-hack-assember/assignees{/user}", + "branches_url": "https://api.github.com/repos/werelax/n2t-hack-assember/branches{/branch}", + "tags_url": "https://api.github.com/repos/werelax/n2t-hack-assember/tags", + "blobs_url": "https://api.github.com/repos/werelax/n2t-hack-assember/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/werelax/n2t-hack-assember/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/werelax/n2t-hack-assember/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/werelax/n2t-hack-assember/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/werelax/n2t-hack-assember/statuses/{sha}", + "languages_url": "https://api.github.com/repos/werelax/n2t-hack-assember/languages", + "stargazers_url": "https://api.github.com/repos/werelax/n2t-hack-assember/stargazers", + "contributors_url": "https://api.github.com/repos/werelax/n2t-hack-assember/contributors", + "subscribers_url": "https://api.github.com/repos/werelax/n2t-hack-assember/subscribers", + "subscription_url": "https://api.github.com/repos/werelax/n2t-hack-assember/subscription", + "commits_url": "https://api.github.com/repos/werelax/n2t-hack-assember/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/werelax/n2t-hack-assember/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/werelax/n2t-hack-assember/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/werelax/n2t-hack-assember/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/werelax/n2t-hack-assember/contents/{+path}", + "compare_url": "https://api.github.com/repos/werelax/n2t-hack-assember/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/werelax/n2t-hack-assember/merges", + "archive_url": "https://api.github.com/repos/werelax/n2t-hack-assember/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/werelax/n2t-hack-assember/downloads", + "issues_url": "https://api.github.com/repos/werelax/n2t-hack-assember/issues{/number}", + "pulls_url": "https://api.github.com/repos/werelax/n2t-hack-assember/pulls{/number}", + "milestones_url": "https://api.github.com/repos/werelax/n2t-hack-assember/milestones{/number}", + "notifications_url": "https://api.github.com/repos/werelax/n2t-hack-assember/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/werelax/n2t-hack-assember/labels{/name}", + "releases_url": "https://api.github.com/repos/werelax/n2t-hack-assember/releases{/id}", + "deployments_url": "https://api.github.com/repos/werelax/n2t-hack-assember/deployments", + "created_at": "2015-05-31T23:32:07Z", + "updated_at": "2015-06-01T12:41:27Z", + "pushed_at": "2015-05-31T23:33:12Z", + "git_url": "git://github.com/werelax/n2t-hack-assember.git", + "ssh_url": "git@github.com:werelax/n2t-hack-assember.git", + "clone_url": "https://github.com/werelax/n2t-hack-assember.git", + "svn_url": "https://github.com/werelax/n2t-hack-assember", + "homepage": null, + "size": 164, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Assembly", + "has_issues": true, + "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": 1, + "default_branch": "master", + "score": 2.5641851 + }, + { + "id": 34019086, + "name": "Tetris", + "full_name": "talbor49/Tetris", + "owner": { + "login": "talbor49", + "id": 9658850, + "avatar_url": "https://avatars.githubusercontent.com/u/9658850?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/talbor49", + "html_url": "https://github.com/talbor49", + "followers_url": "https://api.github.com/users/talbor49/followers", + "following_url": "https://api.github.com/users/talbor49/following{/other_user}", + "gists_url": "https://api.github.com/users/talbor49/gists{/gist_id}", + "starred_url": "https://api.github.com/users/talbor49/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/talbor49/subscriptions", + "organizations_url": "https://api.github.com/users/talbor49/orgs", + "repos_url": "https://api.github.com/users/talbor49/repos", + "events_url": "https://api.github.com/users/talbor49/events{/privacy}", + "received_events_url": "https://api.github.com/users/talbor49/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/talbor49/Tetris", + "description": "\"Tetris\" game clone written completely in 32 bit assembly with the Windows 32 API", + "fork": false, + "url": "https://api.github.com/repos/talbor49/Tetris", + "forks_url": "https://api.github.com/repos/talbor49/Tetris/forks", + "keys_url": "https://api.github.com/repos/talbor49/Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/talbor49/Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/talbor49/Tetris/teams", + "hooks_url": "https://api.github.com/repos/talbor49/Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/talbor49/Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/talbor49/Tetris/events", + "assignees_url": "https://api.github.com/repos/talbor49/Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/talbor49/Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/talbor49/Tetris/tags", + "blobs_url": "https://api.github.com/repos/talbor49/Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/talbor49/Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/talbor49/Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/talbor49/Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/talbor49/Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/talbor49/Tetris/languages", + "stargazers_url": "https://api.github.com/repos/talbor49/Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/talbor49/Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/talbor49/Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/talbor49/Tetris/subscription", + "commits_url": "https://api.github.com/repos/talbor49/Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/talbor49/Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/talbor49/Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/talbor49/Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/talbor49/Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/talbor49/Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/talbor49/Tetris/merges", + "archive_url": "https://api.github.com/repos/talbor49/Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/talbor49/Tetris/downloads", + "issues_url": "https://api.github.com/repos/talbor49/Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/talbor49/Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/talbor49/Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/talbor49/Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/talbor49/Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/talbor49/Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/talbor49/Tetris/deployments", + "created_at": "2015-04-15T21:16:12Z", + "updated_at": "2015-05-29T17:20:04Z", + "pushed_at": "2015-06-09T21:41:06Z", + "git_url": "git://github.com/talbor49/Tetris.git", + "ssh_url": "git@github.com:talbor49/Tetris.git", + "clone_url": "https://github.com/talbor49/Tetris.git", + "svn_url": "https://github.com/talbor49/Tetris", + "homepage": null, + "size": 158152, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 9.48042 + }, + { + "id": 48014686, + "name": "Tetris", + "full_name": "Mashakal/Tetris", + "owner": { + "login": "Mashakal", + "id": 11655107, + "avatar_url": "https://avatars.githubusercontent.com/u/11655107?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Mashakal", + "html_url": "https://github.com/Mashakal", + "followers_url": "https://api.github.com/users/Mashakal/followers", + "following_url": "https://api.github.com/users/Mashakal/following{/other_user}", + "gists_url": "https://api.github.com/users/Mashakal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Mashakal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Mashakal/subscriptions", + "organizations_url": "https://api.github.com/users/Mashakal/orgs", + "repos_url": "https://api.github.com/users/Mashakal/repos", + "events_url": "https://api.github.com/users/Mashakal/events{/privacy}", + "received_events_url": "https://api.github.com/users/Mashakal/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Mashakal/Tetris", + "description": "Tetris - 16 bit x86 Assembly style. I actually converted this code into an OS and have it saved on a thumb-drive.", + "fork": false, + "url": "https://api.github.com/repos/Mashakal/Tetris", + "forks_url": "https://api.github.com/repos/Mashakal/Tetris/forks", + "keys_url": "https://api.github.com/repos/Mashakal/Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Mashakal/Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Mashakal/Tetris/teams", + "hooks_url": "https://api.github.com/repos/Mashakal/Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/Mashakal/Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/Mashakal/Tetris/events", + "assignees_url": "https://api.github.com/repos/Mashakal/Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/Mashakal/Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/Mashakal/Tetris/tags", + "blobs_url": "https://api.github.com/repos/Mashakal/Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Mashakal/Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Mashakal/Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Mashakal/Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Mashakal/Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Mashakal/Tetris/languages", + "stargazers_url": "https://api.github.com/repos/Mashakal/Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/Mashakal/Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/Mashakal/Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/Mashakal/Tetris/subscription", + "commits_url": "https://api.github.com/repos/Mashakal/Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Mashakal/Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Mashakal/Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Mashakal/Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Mashakal/Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/Mashakal/Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Mashakal/Tetris/merges", + "archive_url": "https://api.github.com/repos/Mashakal/Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Mashakal/Tetris/downloads", + "issues_url": "https://api.github.com/repos/Mashakal/Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/Mashakal/Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Mashakal/Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Mashakal/Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Mashakal/Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/Mashakal/Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/Mashakal/Tetris/deployments", + "created_at": "2015-12-15T02:31:35Z", + "updated_at": "2015-12-15T02:40:09Z", + "pushed_at": "2015-12-15T02:40:08Z", + "git_url": "git://github.com/Mashakal/Tetris.git", + "ssh_url": "git@github.com:Mashakal/Tetris.git", + "clone_url": "https://github.com/Mashakal/Tetris.git", + "svn_url": "https://github.com/Mashakal/Tetris", + "homepage": null, + "size": 6, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 9.480347 + }, + { + "id": 59409127, + "name": "tetris", + "full_name": "SvalovaNastya/tetris", + "owner": { + "login": "SvalovaNastya", + "id": 6783533, + "avatar_url": "https://avatars.githubusercontent.com/u/6783533?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/SvalovaNastya", + "html_url": "https://github.com/SvalovaNastya", + "followers_url": "https://api.github.com/users/SvalovaNastya/followers", + "following_url": "https://api.github.com/users/SvalovaNastya/following{/other_user}", + "gists_url": "https://api.github.com/users/SvalovaNastya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SvalovaNastya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SvalovaNastya/subscriptions", + "organizations_url": "https://api.github.com/users/SvalovaNastya/orgs", + "repos_url": "https://api.github.com/users/SvalovaNastya/repos", + "events_url": "https://api.github.com/users/SvalovaNastya/events{/privacy}", + "received_events_url": "https://api.github.com/users/SvalovaNastya/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/SvalovaNastya/tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/SvalovaNastya/tetris", + "forks_url": "https://api.github.com/repos/SvalovaNastya/tetris/forks", + "keys_url": "https://api.github.com/repos/SvalovaNastya/tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SvalovaNastya/tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SvalovaNastya/tetris/teams", + "hooks_url": "https://api.github.com/repos/SvalovaNastya/tetris/hooks", + "issue_events_url": "https://api.github.com/repos/SvalovaNastya/tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/SvalovaNastya/tetris/events", + "assignees_url": "https://api.github.com/repos/SvalovaNastya/tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/SvalovaNastya/tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/SvalovaNastya/tetris/tags", + "blobs_url": "https://api.github.com/repos/SvalovaNastya/tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SvalovaNastya/tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SvalovaNastya/tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SvalovaNastya/tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SvalovaNastya/tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SvalovaNastya/tetris/languages", + "stargazers_url": "https://api.github.com/repos/SvalovaNastya/tetris/stargazers", + "contributors_url": "https://api.github.com/repos/SvalovaNastya/tetris/contributors", + "subscribers_url": "https://api.github.com/repos/SvalovaNastya/tetris/subscribers", + "subscription_url": "https://api.github.com/repos/SvalovaNastya/tetris/subscription", + "commits_url": "https://api.github.com/repos/SvalovaNastya/tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SvalovaNastya/tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SvalovaNastya/tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SvalovaNastya/tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SvalovaNastya/tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/SvalovaNastya/tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SvalovaNastya/tetris/merges", + "archive_url": "https://api.github.com/repos/SvalovaNastya/tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SvalovaNastya/tetris/downloads", + "issues_url": "https://api.github.com/repos/SvalovaNastya/tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/SvalovaNastya/tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SvalovaNastya/tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SvalovaNastya/tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SvalovaNastya/tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/SvalovaNastya/tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/SvalovaNastya/tetris/deployments", + "created_at": "2016-05-22T11:37:57Z", + "updated_at": "2016-05-22T11:40:44Z", + "pushed_at": "2016-05-25T14:20:13Z", + "git_url": "git://github.com/SvalovaNastya/tetris.git", + "ssh_url": "git@github.com:SvalovaNastya/tetris.git", + "clone_url": "https://github.com/SvalovaNastya/tetris.git", + "svn_url": "https://github.com/SvalovaNastya/tetris", + "homepage": null, + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 9.480347 + }, + { + "id": 18544226, + "name": "nand2tetris_projects", + "full_name": "xmunoz/nand2tetris_projects", + "owner": { + "login": "xmunoz", + "id": 1065196, + "avatar_url": "https://avatars.githubusercontent.com/u/1065196?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/xmunoz", + "html_url": "https://github.com/xmunoz", + "followers_url": "https://api.github.com/users/xmunoz/followers", + "following_url": "https://api.github.com/users/xmunoz/following{/other_user}", + "gists_url": "https://api.github.com/users/xmunoz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/xmunoz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/xmunoz/subscriptions", + "organizations_url": "https://api.github.com/users/xmunoz/orgs", + "repos_url": "https://api.github.com/users/xmunoz/repos", + "events_url": "https://api.github.com/users/xmunoz/events{/privacy}", + "received_events_url": "https://api.github.com/users/xmunoz/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/xmunoz/nand2tetris_projects", + "description": "My solutions to \"From nand to tetris\"", + "fork": false, + "url": "https://api.github.com/repos/xmunoz/nand2tetris_projects", + "forks_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/forks", + "keys_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/teams", + "hooks_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/hooks", + "issue_events_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/issues/events{/number}", + "events_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/events", + "assignees_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/assignees{/user}", + "branches_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/branches{/branch}", + "tags_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/tags", + "blobs_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/statuses/{sha}", + "languages_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/languages", + "stargazers_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/stargazers", + "contributors_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/contributors", + "subscribers_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/subscribers", + "subscription_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/subscription", + "commits_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/contents/{+path}", + "compare_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/merges", + "archive_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/downloads", + "issues_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/issues{/number}", + "pulls_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/pulls{/number}", + "milestones_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/milestones{/number}", + "notifications_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/labels{/name}", + "releases_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/releases{/id}", + "deployments_url": "https://api.github.com/repos/xmunoz/nand2tetris_projects/deployments", + "created_at": "2014-04-08T03:40:50Z", + "updated_at": "2014-06-15T16:47:09Z", + "pushed_at": "2014-06-15T16:47:10Z", + "git_url": "git://github.com/xmunoz/nand2tetris_projects.git", + "ssh_url": "git@github.com:xmunoz/nand2tetris_projects.git", + "clone_url": "https://github.com/xmunoz/nand2tetris_projects.git", + "svn_url": "https://github.com/xmunoz/nand2tetris_projects", + "homepage": null, + "size": 429, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "open_issues_count": 0, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "score": 8.53125 + }, + { + "id": 18079172, + "name": "Assembly-Tetris", + "full_name": "Ethanb00/Assembly-Tetris", + "owner": { + "login": "Ethanb00", + "id": 5893479, + "avatar_url": "https://avatars.githubusercontent.com/u/5893479?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Ethanb00", + "html_url": "https://github.com/Ethanb00", + "followers_url": "https://api.github.com/users/Ethanb00/followers", + "following_url": "https://api.github.com/users/Ethanb00/following{/other_user}", + "gists_url": "https://api.github.com/users/Ethanb00/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ethanb00/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ethanb00/subscriptions", + "organizations_url": "https://api.github.com/users/Ethanb00/orgs", + "repos_url": "https://api.github.com/users/Ethanb00/repos", + "events_url": "https://api.github.com/users/Ethanb00/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ethanb00/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Ethanb00/Assembly-Tetris", + "description": "x86 tasm assembly tetris", + "fork": false, + "url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris", + "forks_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/forks", + "keys_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/teams", + "hooks_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/events", + "assignees_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/tags", + "blobs_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/languages", + "stargazers_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/subscription", + "commits_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/merges", + "archive_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/downloads", + "issues_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/Ethanb00/Assembly-Tetris/deployments", + "created_at": "2014-03-24T21:18:05Z", + "updated_at": "2014-03-24T21:25:59Z", + "pushed_at": "2014-03-24T21:25:56Z", + "git_url": "git://github.com/Ethanb00/Assembly-Tetris.git", + "ssh_url": "git@github.com:Ethanb00/Assembly-Tetris.git", + "clone_url": "https://github.com/Ethanb00/Assembly-Tetris.git", + "svn_url": "https://github.com/Ethanb00/Assembly-Tetris", + "homepage": null, + "size": 100, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.837827 + }, + { + "id": 52710196, + "name": "nand2tetris", + "full_name": "WLBF/nand2tetris", + "owner": { + "login": "WLBF", + "id": 11191570, + "avatar_url": "https://avatars.githubusercontent.com/u/11191570?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/WLBF", + "html_url": "https://github.com/WLBF", + "followers_url": "https://api.github.com/users/WLBF/followers", + "following_url": "https://api.github.com/users/WLBF/following{/other_user}", + "gists_url": "https://api.github.com/users/WLBF/gists{/gist_id}", + "starred_url": "https://api.github.com/users/WLBF/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/WLBF/subscriptions", + "organizations_url": "https://api.github.com/users/WLBF/orgs", + "repos_url": "https://api.github.com/users/WLBF/repos", + "events_url": "https://api.github.com/users/WLBF/events{/privacy}", + "received_events_url": "https://api.github.com/users/WLBF/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/WLBF/nand2tetris", + "description": "From Nand to Tetris", + "fork": false, + "url": "https://api.github.com/repos/WLBF/nand2tetris", + "forks_url": "https://api.github.com/repos/WLBF/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/WLBF/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/WLBF/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/WLBF/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/WLBF/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/WLBF/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/WLBF/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/WLBF/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/WLBF/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/WLBF/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/WLBF/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/WLBF/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/WLBF/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/WLBF/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/WLBF/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/WLBF/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/WLBF/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/WLBF/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/WLBF/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/WLBF/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/WLBF/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/WLBF/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/WLBF/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/WLBF/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/WLBF/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/WLBF/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/WLBF/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/WLBF/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/WLBF/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/WLBF/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/WLBF/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/WLBF/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/WLBF/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/WLBF/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/WLBF/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/WLBF/nand2tetris/deployments", + "created_at": "2016-02-28T07:33:04Z", + "updated_at": "2016-02-28T08:27:09Z", + "pushed_at": "2016-03-07T05:14:31Z", + "git_url": "git://github.com/WLBF/nand2tetris.git", + "ssh_url": "git@github.com:WLBF/nand2tetris.git", + "clone_url": "https://github.com/WLBF/nand2tetris.git", + "svn_url": "https://github.com/WLBF/nand2tetris", + "homepage": "", + "size": 515, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.837827 + }, + { + "id": 20493907, + "name": "HACK_COMPUTER_PLATFORM", + "full_name": "sschellhoff/HACK_COMPUTER_PLATFORM", + "owner": { + "login": "sschellhoff", + "id": 2566691, + "avatar_url": "https://avatars.githubusercontent.com/u/2566691?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/sschellhoff", + "html_url": "https://github.com/sschellhoff", + "followers_url": "https://api.github.com/users/sschellhoff/followers", + "following_url": "https://api.github.com/users/sschellhoff/following{/other_user}", + "gists_url": "https://api.github.com/users/sschellhoff/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sschellhoff/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sschellhoff/subscriptions", + "organizations_url": "https://api.github.com/users/sschellhoff/orgs", + "repos_url": "https://api.github.com/users/sschellhoff/repos", + "events_url": "https://api.github.com/users/sschellhoff/events{/privacy}", + "received_events_url": "https://api.github.com/users/sschellhoff/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/sschellhoff/HACK_COMPUTER_PLATFORM", + "description": "from nand to tetris", + "fork": false, + "url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM", + "forks_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/forks", + "keys_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/teams", + "hooks_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/hooks", + "issue_events_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/issues/events{/number}", + "events_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/events", + "assignees_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/assignees{/user}", + "branches_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/branches{/branch}", + "tags_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/tags", + "blobs_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/languages", + "stargazers_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/stargazers", + "contributors_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/contributors", + "subscribers_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/subscribers", + "subscription_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/subscription", + "commits_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/contents/{+path}", + "compare_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/merges", + "archive_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/downloads", + "issues_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/issues{/number}", + "pulls_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/labels{/name}", + "releases_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/releases{/id}", + "deployments_url": "https://api.github.com/repos/sschellhoff/HACK_COMPUTER_PLATFORM/deployments", + "created_at": "2014-06-04T18:00:03Z", + "updated_at": "2014-06-20T21:32:25Z", + "pushed_at": "2014-06-04T18:03:21Z", + "git_url": "git://github.com/sschellhoff/HACK_COMPUTER_PLATFORM.git", + "ssh_url": "git@github.com:sschellhoff/HACK_COMPUTER_PLATFORM.git", + "clone_url": "https://github.com/sschellhoff/HACK_COMPUTER_PLATFORM.git", + "svn_url": "https://github.com/sschellhoff/HACK_COMPUTER_PLATFORM", + "homepage": null, + "size": 3828, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.825 + }, + { + "id": 33284192, + "name": "Nand-to-Tetris", + "full_name": "daysls/Nand-to-Tetris", + "owner": { + "login": "daysls", + "id": 3493256, + "avatar_url": "https://avatars.githubusercontent.com/u/3493256?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/daysls", + "html_url": "https://github.com/daysls", + "followers_url": "https://api.github.com/users/daysls/followers", + "following_url": "https://api.github.com/users/daysls/following{/other_user}", + "gists_url": "https://api.github.com/users/daysls/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daysls/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daysls/subscriptions", + "organizations_url": "https://api.github.com/users/daysls/orgs", + "repos_url": "https://api.github.com/users/daysls/repos", + "events_url": "https://api.github.com/users/daysls/events{/privacy}", + "received_events_url": "https://api.github.com/users/daysls/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/daysls/Nand-to-Tetris", + "description": "Nand to Tetris ", + "fork": false, + "url": "https://api.github.com/repos/daysls/Nand-to-Tetris", + "forks_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/forks", + "keys_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/teams", + "hooks_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/events", + "assignees_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/tags", + "blobs_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/languages", + "stargazers_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/subscription", + "commits_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/merges", + "archive_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/downloads", + "issues_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/daysls/Nand-to-Tetris/deployments", + "created_at": "2015-04-02T02:13:01Z", + "updated_at": "2015-04-02T02:20:27Z", + "pushed_at": "2015-04-02T02:20:27Z", + "git_url": "git://github.com/daysls/Nand-to-Tetris.git", + "ssh_url": "git@github.com:daysls/Nand-to-Tetris.git", + "clone_url": "https://github.com/daysls/Nand-to-Tetris.git", + "svn_url": "https://github.com/daysls/Nand-to-Tetris", + "homepage": null, + "size": 276, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.825 + }, + { + "id": 49198081, + "name": "tetris-x86-assembly", + "full_name": "iastewar/tetris-x86-assembly", + "owner": { + "login": "iastewar", + "id": 9752092, + "avatar_url": "https://avatars.githubusercontent.com/u/9752092?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/iastewar", + "html_url": "https://github.com/iastewar", + "followers_url": "https://api.github.com/users/iastewar/followers", + "following_url": "https://api.github.com/users/iastewar/following{/other_user}", + "gists_url": "https://api.github.com/users/iastewar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/iastewar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/iastewar/subscriptions", + "organizations_url": "https://api.github.com/users/iastewar/orgs", + "repos_url": "https://api.github.com/users/iastewar/repos", + "events_url": "https://api.github.com/users/iastewar/events{/privacy}", + "received_events_url": "https://api.github.com/users/iastewar/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/iastewar/tetris-x86-assembly", + "description": "Tetris in x86 assembly", + "fork": false, + "url": "https://api.github.com/repos/iastewar/tetris-x86-assembly", + "forks_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/forks", + "keys_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/teams", + "hooks_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/hooks", + "issue_events_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/issues/events{/number}", + "events_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/events", + "assignees_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/assignees{/user}", + "branches_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/branches{/branch}", + "tags_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/tags", + "blobs_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/statuses/{sha}", + "languages_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/languages", + "stargazers_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/stargazers", + "contributors_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/contributors", + "subscribers_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/subscribers", + "subscription_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/subscription", + "commits_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/contents/{+path}", + "compare_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/merges", + "archive_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/downloads", + "issues_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/issues{/number}", + "pulls_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/pulls{/number}", + "milestones_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/milestones{/number}", + "notifications_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/labels{/name}", + "releases_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/releases{/id}", + "deployments_url": "https://api.github.com/repos/iastewar/tetris-x86-assembly/deployments", + "created_at": "2016-01-07T10:29:10Z", + "updated_at": "2016-01-07T10:30:58Z", + "pushed_at": "2016-01-07T10:30:57Z", + "git_url": "git://github.com/iastewar/tetris-x86-assembly.git", + "ssh_url": "git@github.com:iastewar/tetris-x86-assembly.git", + "clone_url": "https://github.com/iastewar/tetris-x86-assembly.git", + "svn_url": "https://github.com/iastewar/tetris-x86-assembly", + "homepage": null, + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.825 + }, + { + "id": 41434204, + "name": "CRCP2330", + "full_name": "eileenmguo/CRCP2330", + "owner": { + "login": "eileenmguo", + "id": 9022549, + "avatar_url": "https://avatars.githubusercontent.com/u/9022549?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/eileenmguo", + "html_url": "https://github.com/eileenmguo", + "followers_url": "https://api.github.com/users/eileenmguo/followers", + "following_url": "https://api.github.com/users/eileenmguo/following{/other_user}", + "gists_url": "https://api.github.com/users/eileenmguo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eileenmguo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eileenmguo/subscriptions", + "organizations_url": "https://api.github.com/users/eileenmguo/orgs", + "repos_url": "https://api.github.com/users/eileenmguo/repos", + "events_url": "https://api.github.com/users/eileenmguo/events{/privacy}", + "received_events_url": "https://api.github.com/users/eileenmguo/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/eileenmguo/CRCP2330", + "description": "Nand To Tetris", + "fork": false, + "url": "https://api.github.com/repos/eileenmguo/CRCP2330", + "forks_url": "https://api.github.com/repos/eileenmguo/CRCP2330/forks", + "keys_url": "https://api.github.com/repos/eileenmguo/CRCP2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/eileenmguo/CRCP2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/eileenmguo/CRCP2330/teams", + "hooks_url": "https://api.github.com/repos/eileenmguo/CRCP2330/hooks", + "issue_events_url": "https://api.github.com/repos/eileenmguo/CRCP2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/eileenmguo/CRCP2330/events", + "assignees_url": "https://api.github.com/repos/eileenmguo/CRCP2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/eileenmguo/CRCP2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/eileenmguo/CRCP2330/tags", + "blobs_url": "https://api.github.com/repos/eileenmguo/CRCP2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/eileenmguo/CRCP2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/eileenmguo/CRCP2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/eileenmguo/CRCP2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/eileenmguo/CRCP2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/eileenmguo/CRCP2330/languages", + "stargazers_url": "https://api.github.com/repos/eileenmguo/CRCP2330/stargazers", + "contributors_url": "https://api.github.com/repos/eileenmguo/CRCP2330/contributors", + "subscribers_url": "https://api.github.com/repos/eileenmguo/CRCP2330/subscribers", + "subscription_url": "https://api.github.com/repos/eileenmguo/CRCP2330/subscription", + "commits_url": "https://api.github.com/repos/eileenmguo/CRCP2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/eileenmguo/CRCP2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/eileenmguo/CRCP2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/eileenmguo/CRCP2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/eileenmguo/CRCP2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/eileenmguo/CRCP2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/eileenmguo/CRCP2330/merges", + "archive_url": "https://api.github.com/repos/eileenmguo/CRCP2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/eileenmguo/CRCP2330/downloads", + "issues_url": "https://api.github.com/repos/eileenmguo/CRCP2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/eileenmguo/CRCP2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/eileenmguo/CRCP2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/eileenmguo/CRCP2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/eileenmguo/CRCP2330/labels{/name}", + "releases_url": "https://api.github.com/repos/eileenmguo/CRCP2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/eileenmguo/CRCP2330/deployments", + "created_at": "2015-08-26T15:39:58Z", + "updated_at": "2015-08-27T23:01:08Z", + "pushed_at": "2015-12-08T02:41:38Z", + "git_url": "git://github.com/eileenmguo/CRCP2330.git", + "ssh_url": "git@github.com:eileenmguo/CRCP2330.git", + "clone_url": "https://github.com/eileenmguo/CRCP2330.git", + "svn_url": "https://github.com/eileenmguo/CRCP2330", + "homepage": null, + "size": 192, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.825 + }, + { + "id": 41532803, + "name": "crcp2330", + "full_name": "maphaiyarath/crcp2330", + "owner": { + "login": "maphaiyarath", + "id": 13982222, + "avatar_url": "https://avatars.githubusercontent.com/u/13982222?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/maphaiyarath", + "html_url": "https://github.com/maphaiyarath", + "followers_url": "https://api.github.com/users/maphaiyarath/followers", + "following_url": "https://api.github.com/users/maphaiyarath/following{/other_user}", + "gists_url": "https://api.github.com/users/maphaiyarath/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maphaiyarath/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maphaiyarath/subscriptions", + "organizations_url": "https://api.github.com/users/maphaiyarath/orgs", + "repos_url": "https://api.github.com/users/maphaiyarath/repos", + "events_url": "https://api.github.com/users/maphaiyarath/events{/privacy}", + "received_events_url": "https://api.github.com/users/maphaiyarath/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/maphaiyarath/crcp2330", + "description": "nand to tetris", + "fork": false, + "url": "https://api.github.com/repos/maphaiyarath/crcp2330", + "forks_url": "https://api.github.com/repos/maphaiyarath/crcp2330/forks", + "keys_url": "https://api.github.com/repos/maphaiyarath/crcp2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/maphaiyarath/crcp2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/maphaiyarath/crcp2330/teams", + "hooks_url": "https://api.github.com/repos/maphaiyarath/crcp2330/hooks", + "issue_events_url": "https://api.github.com/repos/maphaiyarath/crcp2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/maphaiyarath/crcp2330/events", + "assignees_url": "https://api.github.com/repos/maphaiyarath/crcp2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/maphaiyarath/crcp2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/maphaiyarath/crcp2330/tags", + "blobs_url": "https://api.github.com/repos/maphaiyarath/crcp2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/maphaiyarath/crcp2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/maphaiyarath/crcp2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/maphaiyarath/crcp2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/maphaiyarath/crcp2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/maphaiyarath/crcp2330/languages", + "stargazers_url": "https://api.github.com/repos/maphaiyarath/crcp2330/stargazers", + "contributors_url": "https://api.github.com/repos/maphaiyarath/crcp2330/contributors", + "subscribers_url": "https://api.github.com/repos/maphaiyarath/crcp2330/subscribers", + "subscription_url": "https://api.github.com/repos/maphaiyarath/crcp2330/subscription", + "commits_url": "https://api.github.com/repos/maphaiyarath/crcp2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/maphaiyarath/crcp2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/maphaiyarath/crcp2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/maphaiyarath/crcp2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/maphaiyarath/crcp2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/maphaiyarath/crcp2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/maphaiyarath/crcp2330/merges", + "archive_url": "https://api.github.com/repos/maphaiyarath/crcp2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/maphaiyarath/crcp2330/downloads", + "issues_url": "https://api.github.com/repos/maphaiyarath/crcp2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/maphaiyarath/crcp2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/maphaiyarath/crcp2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/maphaiyarath/crcp2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/maphaiyarath/crcp2330/labels{/name}", + "releases_url": "https://api.github.com/repos/maphaiyarath/crcp2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/maphaiyarath/crcp2330/deployments", + "created_at": "2015-08-28T07:13:16Z", + "updated_at": "2015-08-28T07:24:34Z", + "pushed_at": "2015-12-11T09:21:41Z", + "git_url": "git://github.com/maphaiyarath/crcp2330.git", + "ssh_url": "git@github.com:maphaiyarath/crcp2330.git", + "clone_url": "https://github.com/maphaiyarath/crcp2330.git", + "svn_url": "https://github.com/maphaiyarath/crcp2330", + "homepage": null, + "size": 198, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.825 + }, + { + "id": 47229336, + "name": "n2t", + "full_name": "PhillipChaffee/n2t", + "owner": { + "login": "PhillipChaffee", + "id": 2183862, + "avatar_url": "https://avatars.githubusercontent.com/u/2183862?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/PhillipChaffee", + "html_url": "https://github.com/PhillipChaffee", + "followers_url": "https://api.github.com/users/PhillipChaffee/followers", + "following_url": "https://api.github.com/users/PhillipChaffee/following{/other_user}", + "gists_url": "https://api.github.com/users/PhillipChaffee/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PhillipChaffee/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PhillipChaffee/subscriptions", + "organizations_url": "https://api.github.com/users/PhillipChaffee/orgs", + "repos_url": "https://api.github.com/users/PhillipChaffee/repos", + "events_url": "https://api.github.com/users/PhillipChaffee/events{/privacy}", + "received_events_url": "https://api.github.com/users/PhillipChaffee/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/PhillipChaffee/n2t", + "description": "Nand 2 Tetris", + "fork": false, + "url": "https://api.github.com/repos/PhillipChaffee/n2t", + "forks_url": "https://api.github.com/repos/PhillipChaffee/n2t/forks", + "keys_url": "https://api.github.com/repos/PhillipChaffee/n2t/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PhillipChaffee/n2t/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PhillipChaffee/n2t/teams", + "hooks_url": "https://api.github.com/repos/PhillipChaffee/n2t/hooks", + "issue_events_url": "https://api.github.com/repos/PhillipChaffee/n2t/issues/events{/number}", + "events_url": "https://api.github.com/repos/PhillipChaffee/n2t/events", + "assignees_url": "https://api.github.com/repos/PhillipChaffee/n2t/assignees{/user}", + "branches_url": "https://api.github.com/repos/PhillipChaffee/n2t/branches{/branch}", + "tags_url": "https://api.github.com/repos/PhillipChaffee/n2t/tags", + "blobs_url": "https://api.github.com/repos/PhillipChaffee/n2t/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PhillipChaffee/n2t/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PhillipChaffee/n2t/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PhillipChaffee/n2t/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PhillipChaffee/n2t/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PhillipChaffee/n2t/languages", + "stargazers_url": "https://api.github.com/repos/PhillipChaffee/n2t/stargazers", + "contributors_url": "https://api.github.com/repos/PhillipChaffee/n2t/contributors", + "subscribers_url": "https://api.github.com/repos/PhillipChaffee/n2t/subscribers", + "subscription_url": "https://api.github.com/repos/PhillipChaffee/n2t/subscription", + "commits_url": "https://api.github.com/repos/PhillipChaffee/n2t/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PhillipChaffee/n2t/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PhillipChaffee/n2t/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PhillipChaffee/n2t/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PhillipChaffee/n2t/contents/{+path}", + "compare_url": "https://api.github.com/repos/PhillipChaffee/n2t/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PhillipChaffee/n2t/merges", + "archive_url": "https://api.github.com/repos/PhillipChaffee/n2t/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PhillipChaffee/n2t/downloads", + "issues_url": "https://api.github.com/repos/PhillipChaffee/n2t/issues{/number}", + "pulls_url": "https://api.github.com/repos/PhillipChaffee/n2t/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PhillipChaffee/n2t/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PhillipChaffee/n2t/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PhillipChaffee/n2t/labels{/name}", + "releases_url": "https://api.github.com/repos/PhillipChaffee/n2t/releases{/id}", + "deployments_url": "https://api.github.com/repos/PhillipChaffee/n2t/deployments", + "created_at": "2015-12-02T01:42:52Z", + "updated_at": "2016-01-11T20:46:54Z", + "pushed_at": "2016-06-01T15:09:13Z", + "git_url": "git://github.com/PhillipChaffee/n2t.git", + "ssh_url": "git@github.com:PhillipChaffee/n2t.git", + "clone_url": "https://github.com/PhillipChaffee/n2t.git", + "svn_url": "https://github.com/PhillipChaffee/n2t", + "homepage": "http://www.nand2tetris.org", + "size": 605, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.825 + }, + { + "id": 8762442, + "name": "TrashCompactor", + "full_name": "SpyhopSpring2013/TrashCompactor", + "owner": { + "login": "SpyhopSpring2013", + "id": 3858400, + "avatar_url": "https://avatars.githubusercontent.com/u/3858400?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/SpyhopSpring2013", + "html_url": "https://github.com/SpyhopSpring2013", + "followers_url": "https://api.github.com/users/SpyhopSpring2013/followers", + "following_url": "https://api.github.com/users/SpyhopSpring2013/following{/other_user}", + "gists_url": "https://api.github.com/users/SpyhopSpring2013/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SpyhopSpring2013/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SpyhopSpring2013/subscriptions", + "organizations_url": "https://api.github.com/users/SpyhopSpring2013/orgs", + "repos_url": "https://api.github.com/users/SpyhopSpring2013/repos", + "events_url": "https://api.github.com/users/SpyhopSpring2013/events{/privacy}", + "received_events_url": "https://api.github.com/users/SpyhopSpring2013/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/SpyhopSpring2013/TrashCompactor", + "description": "Tetris-like Recycling Game", + "fork": false, + "url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor", + "forks_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/forks", + "keys_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/teams", + "hooks_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/hooks", + "issue_events_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/issues/events{/number}", + "events_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/events", + "assignees_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/assignees{/user}", + "branches_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/branches{/branch}", + "tags_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/tags", + "blobs_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/languages", + "stargazers_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/stargazers", + "contributors_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/contributors", + "subscribers_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/subscribers", + "subscription_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/subscription", + "commits_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/contents/{+path}", + "compare_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/merges", + "archive_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/downloads", + "issues_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/issues{/number}", + "pulls_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/labels{/name}", + "releases_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/releases{/id}", + "deployments_url": "https://api.github.com/repos/SpyhopSpring2013/TrashCompactor/deployments", + "created_at": "2013-03-13T21:58:23Z", + "updated_at": "2013-12-09T11:19:27Z", + "pushed_at": "2013-05-31T15:38:06Z", + "git_url": "git://github.com/SpyhopSpring2013/TrashCompactor.git", + "ssh_url": "git@github.com:SpyhopSpring2013/TrashCompactor.git", + "clone_url": "https://github.com/SpyhopSpring2013/TrashCompactor.git", + "svn_url": "https://github.com/SpyhopSpring2013/TrashCompactor", + "homepage": null, + "size": 242108, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.783053 + }, + { + "id": 35029495, + "name": "nand2tetris", + "full_name": "boringmachine/nand2tetris", + "owner": { + "login": "boringmachine", + "id": 2806941, + "avatar_url": "https://avatars.githubusercontent.com/u/2806941?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/boringmachine", + "html_url": "https://github.com/boringmachine", + "followers_url": "https://api.github.com/users/boringmachine/followers", + "following_url": "https://api.github.com/users/boringmachine/following{/other_user}", + "gists_url": "https://api.github.com/users/boringmachine/gists{/gist_id}", + "starred_url": "https://api.github.com/users/boringmachine/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/boringmachine/subscriptions", + "organizations_url": "https://api.github.com/users/boringmachine/orgs", + "repos_url": "https://api.github.com/users/boringmachine/repos", + "events_url": "https://api.github.com/users/boringmachine/events{/privacy}", + "received_events_url": "https://api.github.com/users/boringmachine/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/boringmachine/nand2tetris", + "description": "nand 2 tetris practicing", + "fork": false, + "url": "https://api.github.com/repos/boringmachine/nand2tetris", + "forks_url": "https://api.github.com/repos/boringmachine/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/boringmachine/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/boringmachine/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/boringmachine/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/boringmachine/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/boringmachine/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/boringmachine/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/boringmachine/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/boringmachine/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/boringmachine/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/boringmachine/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/boringmachine/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/boringmachine/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/boringmachine/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/boringmachine/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/boringmachine/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/boringmachine/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/boringmachine/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/boringmachine/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/boringmachine/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/boringmachine/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/boringmachine/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/boringmachine/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/boringmachine/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/boringmachine/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/boringmachine/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/boringmachine/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/boringmachine/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/boringmachine/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/boringmachine/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/boringmachine/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/boringmachine/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/boringmachine/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/boringmachine/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/boringmachine/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/boringmachine/nand2tetris/deployments", + "created_at": "2015-05-04T10:51:16Z", + "updated_at": "2015-05-15T07:57:54Z", + "pushed_at": "2015-06-14T01:29:58Z", + "git_url": "git://github.com/boringmachine/nand2tetris.git", + "ssh_url": "git@github.com:boringmachine/nand2tetris.git", + "clone_url": "https://github.com/boringmachine/nand2tetris.git", + "svn_url": "https://github.com/boringmachine/nand2tetris", + "homepage": null, + "size": 13136, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.783053 + }, + { + "id": 51627305, + "name": "TheElementsOfComputingSystems", + "full_name": "ChaeOkay/TheElementsOfComputingSystems", + "owner": { + "login": "ChaeOkay", + "id": 3820966, + "avatar_url": "https://avatars.githubusercontent.com/u/3820966?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/ChaeOkay", + "html_url": "https://github.com/ChaeOkay", + "followers_url": "https://api.github.com/users/ChaeOkay/followers", + "following_url": "https://api.github.com/users/ChaeOkay/following{/other_user}", + "gists_url": "https://api.github.com/users/ChaeOkay/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ChaeOkay/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ChaeOkay/subscriptions", + "organizations_url": "https://api.github.com/users/ChaeOkay/orgs", + "repos_url": "https://api.github.com/users/ChaeOkay/repos", + "events_url": "https://api.github.com/users/ChaeOkay/events{/privacy}", + "received_events_url": "https://api.github.com/users/ChaeOkay/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ChaeOkay/TheElementsOfComputingSystems", + "description": "Nand to Tetris Projects", + "fork": false, + "url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems", + "forks_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/forks", + "keys_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/teams", + "hooks_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/hooks", + "issue_events_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/issues/events{/number}", + "events_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/events", + "assignees_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/assignees{/user}", + "branches_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/branches{/branch}", + "tags_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/tags", + "blobs_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/languages", + "stargazers_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/stargazers", + "contributors_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/contributors", + "subscribers_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/subscribers", + "subscription_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/subscription", + "commits_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/contents/{+path}", + "compare_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/merges", + "archive_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/downloads", + "issues_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/issues{/number}", + "pulls_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/labels{/name}", + "releases_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/releases{/id}", + "deployments_url": "https://api.github.com/repos/ChaeOkay/TheElementsOfComputingSystems/deployments", + "created_at": "2016-02-13T01:40:35Z", + "updated_at": "2016-02-13T01:40:58Z", + "pushed_at": "2016-02-22T02:17:40Z", + "git_url": "git://github.com/ChaeOkay/TheElementsOfComputingSystems.git", + "ssh_url": "git@github.com:ChaeOkay/TheElementsOfComputingSystems.git", + "clone_url": "https://github.com/ChaeOkay/TheElementsOfComputingSystems.git", + "svn_url": "https://github.com/ChaeOkay/TheElementsOfComputingSystems", + "homepage": null, + "size": 516, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 6.783053 + }, + { + "id": 23557231, + "name": "nand2tetris", + "full_name": "ZenBowman/nand2tetris", + "owner": { + "login": "ZenBowman", + "id": 2371702, + "avatar_url": "https://avatars.githubusercontent.com/u/2371702?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/ZenBowman", + "html_url": "https://github.com/ZenBowman", + "followers_url": "https://api.github.com/users/ZenBowman/followers", + "following_url": "https://api.github.com/users/ZenBowman/following{/other_user}", + "gists_url": "https://api.github.com/users/ZenBowman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ZenBowman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ZenBowman/subscriptions", + "organizations_url": "https://api.github.com/users/ZenBowman/orgs", + "repos_url": "https://api.github.com/users/ZenBowman/repos", + "events_url": "https://api.github.com/users/ZenBowman/events{/privacy}", + "received_events_url": "https://api.github.com/users/ZenBowman/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ZenBowman/nand2tetris", + "description": "Exercises from nand 2 tetris", + "fork": false, + "url": "https://api.github.com/repos/ZenBowman/nand2tetris", + "forks_url": "https://api.github.com/repos/ZenBowman/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/ZenBowman/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ZenBowman/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ZenBowman/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/ZenBowman/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/ZenBowman/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/ZenBowman/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/ZenBowman/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/ZenBowman/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/ZenBowman/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/ZenBowman/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ZenBowman/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ZenBowman/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ZenBowman/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ZenBowman/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ZenBowman/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/ZenBowman/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/ZenBowman/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/ZenBowman/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/ZenBowman/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/ZenBowman/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ZenBowman/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ZenBowman/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ZenBowman/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ZenBowman/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/ZenBowman/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ZenBowman/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/ZenBowman/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ZenBowman/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/ZenBowman/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/ZenBowman/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ZenBowman/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ZenBowman/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ZenBowman/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/ZenBowman/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/ZenBowman/nand2tetris/deployments", + "created_at": "2014-09-01T22:13:41Z", + "updated_at": "2014-09-02T01:19:37Z", + "pushed_at": "2014-10-05T19:08:56Z", + "git_url": "git://github.com/ZenBowman/nand2tetris.git", + "ssh_url": "git@github.com:ZenBowman/nand2tetris.git", + "clone_url": "https://github.com/ZenBowman/nand2tetris.git", + "svn_url": "https://github.com/ZenBowman/nand2tetris", + "homepage": null, + "size": 432, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.971875 + }, + { + "id": 53755232, + "name": "nand2tetris", + "full_name": "jake-jake-jake/nand2tetris", + "owner": { + "login": "jake-jake-jake", + "id": 13736437, + "avatar_url": "https://avatars.githubusercontent.com/u/13736437?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/jake-jake-jake", + "html_url": "https://github.com/jake-jake-jake", + "followers_url": "https://api.github.com/users/jake-jake-jake/followers", + "following_url": "https://api.github.com/users/jake-jake-jake/following{/other_user}", + "gists_url": "https://api.github.com/users/jake-jake-jake/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jake-jake-jake/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jake-jake-jake/subscriptions", + "organizations_url": "https://api.github.com/users/jake-jake-jake/orgs", + "repos_url": "https://api.github.com/users/jake-jake-jake/repos", + "events_url": "https://api.github.com/users/jake-jake-jake/events{/privacy}", + "received_events_url": "https://api.github.com/users/jake-jake-jake/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jake-jake-jake/nand2tetris", + "description": "Working through Nand 2 Tetris", + "fork": false, + "url": "https://api.github.com/repos/jake-jake-jake/nand2tetris", + "forks_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/jake-jake-jake/nand2tetris/deployments", + "created_at": "2016-03-12T21:56:11Z", + "updated_at": "2016-03-12T22:00:38Z", + "pushed_at": "2016-03-12T22:00:33Z", + "git_url": "git://github.com/jake-jake-jake/nand2tetris.git", + "ssh_url": "git@github.com:jake-jake-jake/nand2tetris.git", + "clone_url": "https://github.com/jake-jake-jake/nand2tetris.git", + "svn_url": "https://github.com/jake-jake-jake/nand2tetris", + "homepage": null, + "size": 157, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.971875 + }, + { + "id": 59998741, + "name": "from-Nand-to-Tetris", + "full_name": "perplexedpigmy/from-Nand-to-Tetris", + "owner": { + "login": "perplexedpigmy", + "id": 9532454, + "avatar_url": "https://avatars.githubusercontent.com/u/9532454?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/perplexedpigmy", + "html_url": "https://github.com/perplexedpigmy", + "followers_url": "https://api.github.com/users/perplexedpigmy/followers", + "following_url": "https://api.github.com/users/perplexedpigmy/following{/other_user}", + "gists_url": "https://api.github.com/users/perplexedpigmy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/perplexedpigmy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/perplexedpigmy/subscriptions", + "organizations_url": "https://api.github.com/users/perplexedpigmy/orgs", + "repos_url": "https://api.github.com/users/perplexedpigmy/repos", + "events_url": "https://api.github.com/users/perplexedpigmy/events{/privacy}", + "received_events_url": "https://api.github.com/users/perplexedpigmy/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/perplexedpigmy/from-Nand-to-Tetris", + "description": "Coursera - From Nand To Tetris ", + "fork": false, + "url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris", + "forks_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/forks", + "keys_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/teams", + "hooks_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/events", + "assignees_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/tags", + "blobs_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/languages", + "stargazers_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/subscription", + "commits_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/merges", + "archive_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/downloads", + "issues_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/perplexedpigmy/from-Nand-to-Tetris/deployments", + "created_at": "2016-05-30T09:42:39Z", + "updated_at": "2016-05-30T10:51:33Z", + "pushed_at": "2016-06-19T16:06:53Z", + "git_url": "git://github.com/perplexedpigmy/from-Nand-to-Tetris.git", + "ssh_url": "git@github.com:perplexedpigmy/from-Nand-to-Tetris.git", + "clone_url": "https://github.com/perplexedpigmy/from-Nand-to-Tetris.git", + "svn_url": "https://github.com/perplexedpigmy/from-Nand-to-Tetris", + "homepage": null, + "size": 508, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.971875 + }, + { + "id": 41434192, + "name": "crcp2330", + "full_name": "zbiehl/crcp2330", + "owner": { + "login": "zbiehl", + "id": 10563862, + "avatar_url": "https://avatars.githubusercontent.com/u/10563862?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/zbiehl", + "html_url": "https://github.com/zbiehl", + "followers_url": "https://api.github.com/users/zbiehl/followers", + "following_url": "https://api.github.com/users/zbiehl/following{/other_user}", + "gists_url": "https://api.github.com/users/zbiehl/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zbiehl/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zbiehl/subscriptions", + "organizations_url": "https://api.github.com/users/zbiehl/orgs", + "repos_url": "https://api.github.com/users/zbiehl/repos", + "events_url": "https://api.github.com/users/zbiehl/events{/privacy}", + "received_events_url": "https://api.github.com/users/zbiehl/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/zbiehl/crcp2330", + "description": "Nand-Tetris work (CRCP 2330)", + "fork": false, + "url": "https://api.github.com/repos/zbiehl/crcp2330", + "forks_url": "https://api.github.com/repos/zbiehl/crcp2330/forks", + "keys_url": "https://api.github.com/repos/zbiehl/crcp2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/zbiehl/crcp2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/zbiehl/crcp2330/teams", + "hooks_url": "https://api.github.com/repos/zbiehl/crcp2330/hooks", + "issue_events_url": "https://api.github.com/repos/zbiehl/crcp2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/zbiehl/crcp2330/events", + "assignees_url": "https://api.github.com/repos/zbiehl/crcp2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/zbiehl/crcp2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/zbiehl/crcp2330/tags", + "blobs_url": "https://api.github.com/repos/zbiehl/crcp2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/zbiehl/crcp2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/zbiehl/crcp2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/zbiehl/crcp2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/zbiehl/crcp2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/zbiehl/crcp2330/languages", + "stargazers_url": "https://api.github.com/repos/zbiehl/crcp2330/stargazers", + "contributors_url": "https://api.github.com/repos/zbiehl/crcp2330/contributors", + "subscribers_url": "https://api.github.com/repos/zbiehl/crcp2330/subscribers", + "subscription_url": "https://api.github.com/repos/zbiehl/crcp2330/subscription", + "commits_url": "https://api.github.com/repos/zbiehl/crcp2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/zbiehl/crcp2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/zbiehl/crcp2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/zbiehl/crcp2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/zbiehl/crcp2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/zbiehl/crcp2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/zbiehl/crcp2330/merges", + "archive_url": "https://api.github.com/repos/zbiehl/crcp2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/zbiehl/crcp2330/downloads", + "issues_url": "https://api.github.com/repos/zbiehl/crcp2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/zbiehl/crcp2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/zbiehl/crcp2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/zbiehl/crcp2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/zbiehl/crcp2330/labels{/name}", + "releases_url": "https://api.github.com/repos/zbiehl/crcp2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/zbiehl/crcp2330/deployments", + "created_at": "2015-08-26T15:39:54Z", + "updated_at": "2015-08-28T14:57:15Z", + "pushed_at": "2015-12-12T16:52:17Z", + "git_url": "git://github.com/zbiehl/crcp2330.git", + "ssh_url": "git@github.com:zbiehl/crcp2330.git", + "clone_url": "https://github.com/zbiehl/crcp2330.git", + "svn_url": "https://github.com/zbiehl/crcp2330", + "homepage": null, + "size": 179, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.958142 + }, + { + "id": 41434202, + "name": "crcp2330", + "full_name": "esposama/crcp2330", + "owner": { + "login": "esposama", + "id": 13947981, + "avatar_url": "https://avatars.githubusercontent.com/u/13947981?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/esposama", + "html_url": "https://github.com/esposama", + "followers_url": "https://api.github.com/users/esposama/followers", + "following_url": "https://api.github.com/users/esposama/following{/other_user}", + "gists_url": "https://api.github.com/users/esposama/gists{/gist_id}", + "starred_url": "https://api.github.com/users/esposama/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/esposama/subscriptions", + "organizations_url": "https://api.github.com/users/esposama/orgs", + "repos_url": "https://api.github.com/users/esposama/repos", + "events_url": "https://api.github.com/users/esposama/events{/privacy}", + "received_events_url": "https://api.github.com/users/esposama/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/esposama/crcp2330", + "description": "Work for Nand to Tetris ", + "fork": false, + "url": "https://api.github.com/repos/esposama/crcp2330", + "forks_url": "https://api.github.com/repos/esposama/crcp2330/forks", + "keys_url": "https://api.github.com/repos/esposama/crcp2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/esposama/crcp2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/esposama/crcp2330/teams", + "hooks_url": "https://api.github.com/repos/esposama/crcp2330/hooks", + "issue_events_url": "https://api.github.com/repos/esposama/crcp2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/esposama/crcp2330/events", + "assignees_url": "https://api.github.com/repos/esposama/crcp2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/esposama/crcp2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/esposama/crcp2330/tags", + "blobs_url": "https://api.github.com/repos/esposama/crcp2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/esposama/crcp2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/esposama/crcp2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/esposama/crcp2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/esposama/crcp2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/esposama/crcp2330/languages", + "stargazers_url": "https://api.github.com/repos/esposama/crcp2330/stargazers", + "contributors_url": "https://api.github.com/repos/esposama/crcp2330/contributors", + "subscribers_url": "https://api.github.com/repos/esposama/crcp2330/subscribers", + "subscription_url": "https://api.github.com/repos/esposama/crcp2330/subscription", + "commits_url": "https://api.github.com/repos/esposama/crcp2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/esposama/crcp2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/esposama/crcp2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/esposama/crcp2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/esposama/crcp2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/esposama/crcp2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/esposama/crcp2330/merges", + "archive_url": "https://api.github.com/repos/esposama/crcp2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/esposama/crcp2330/downloads", + "issues_url": "https://api.github.com/repos/esposama/crcp2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/esposama/crcp2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/esposama/crcp2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/esposama/crcp2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/esposama/crcp2330/labels{/name}", + "releases_url": "https://api.github.com/repos/esposama/crcp2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/esposama/crcp2330/deployments", + "created_at": "2015-08-26T15:39:57Z", + "updated_at": "2015-08-28T14:52:47Z", + "pushed_at": "2015-12-10T20:41:58Z", + "git_url": "git://github.com/esposama/crcp2330.git", + "ssh_url": "git@github.com:esposama/crcp2330.git", + "clone_url": "https://github.com/esposama/crcp2330.git", + "svn_url": "https://github.com/esposama/crcp2330", + "homepage": null, + "size": 223, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.958142 + }, + { + "id": 41434237, + "name": "CRCP2330", + "full_name": "CSAR101/CRCP2330", + "owner": { + "login": "CSAR101", + "id": 6454434, + "avatar_url": "https://avatars.githubusercontent.com/u/6454434?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/CSAR101", + "html_url": "https://github.com/CSAR101", + "followers_url": "https://api.github.com/users/CSAR101/followers", + "following_url": "https://api.github.com/users/CSAR101/following{/other_user}", + "gists_url": "https://api.github.com/users/CSAR101/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CSAR101/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CSAR101/subscriptions", + "organizations_url": "https://api.github.com/users/CSAR101/orgs", + "repos_url": "https://api.github.com/users/CSAR101/repos", + "events_url": "https://api.github.com/users/CSAR101/events{/privacy}", + "received_events_url": "https://api.github.com/users/CSAR101/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/CSAR101/CRCP2330", + "description": "Projects for NAND To Tetris", + "fork": false, + "url": "https://api.github.com/repos/CSAR101/CRCP2330", + "forks_url": "https://api.github.com/repos/CSAR101/CRCP2330/forks", + "keys_url": "https://api.github.com/repos/CSAR101/CRCP2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CSAR101/CRCP2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CSAR101/CRCP2330/teams", + "hooks_url": "https://api.github.com/repos/CSAR101/CRCP2330/hooks", + "issue_events_url": "https://api.github.com/repos/CSAR101/CRCP2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/CSAR101/CRCP2330/events", + "assignees_url": "https://api.github.com/repos/CSAR101/CRCP2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/CSAR101/CRCP2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/CSAR101/CRCP2330/tags", + "blobs_url": "https://api.github.com/repos/CSAR101/CRCP2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CSAR101/CRCP2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CSAR101/CRCP2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CSAR101/CRCP2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CSAR101/CRCP2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CSAR101/CRCP2330/languages", + "stargazers_url": "https://api.github.com/repos/CSAR101/CRCP2330/stargazers", + "contributors_url": "https://api.github.com/repos/CSAR101/CRCP2330/contributors", + "subscribers_url": "https://api.github.com/repos/CSAR101/CRCP2330/subscribers", + "subscription_url": "https://api.github.com/repos/CSAR101/CRCP2330/subscription", + "commits_url": "https://api.github.com/repos/CSAR101/CRCP2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CSAR101/CRCP2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CSAR101/CRCP2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CSAR101/CRCP2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/CSAR101/CRCP2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/CSAR101/CRCP2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CSAR101/CRCP2330/merges", + "archive_url": "https://api.github.com/repos/CSAR101/CRCP2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CSAR101/CRCP2330/downloads", + "issues_url": "https://api.github.com/repos/CSAR101/CRCP2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/CSAR101/CRCP2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CSAR101/CRCP2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CSAR101/CRCP2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CSAR101/CRCP2330/labels{/name}", + "releases_url": "https://api.github.com/repos/CSAR101/CRCP2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/CSAR101/CRCP2330/deployments", + "created_at": "2015-08-26T15:40:44Z", + "updated_at": "2015-08-31T14:49:51Z", + "pushed_at": "2015-12-11T08:52:59Z", + "git_url": "git://github.com/CSAR101/CRCP2330.git", + "ssh_url": "git@github.com:CSAR101/CRCP2330.git", + "clone_url": "https://github.com/CSAR101/CRCP2330.git", + "svn_url": "https://github.com/CSAR101/CRCP2330", + "homepage": null, + "size": 192, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.958142 + }, + { + "id": 33399954, + "name": "nand2tetris-project", + "full_name": "takeisa/nand2tetris-project", + "owner": { + "login": "takeisa", + "id": 1157801, + "avatar_url": "https://avatars.githubusercontent.com/u/1157801?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/takeisa", + "html_url": "https://github.com/takeisa", + "followers_url": "https://api.github.com/users/takeisa/followers", + "following_url": "https://api.github.com/users/takeisa/following{/other_user}", + "gists_url": "https://api.github.com/users/takeisa/gists{/gist_id}", + "starred_url": "https://api.github.com/users/takeisa/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/takeisa/subscriptions", + "organizations_url": "https://api.github.com/users/takeisa/orgs", + "repos_url": "https://api.github.com/users/takeisa/repos", + "events_url": "https://api.github.com/users/takeisa/events{/privacy}", + "received_events_url": "https://api.github.com/users/takeisa/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/takeisa/nand2tetris-project", + "description": "NAND to Tetris project files", + "fork": false, + "url": "https://api.github.com/repos/takeisa/nand2tetris-project", + "forks_url": "https://api.github.com/repos/takeisa/nand2tetris-project/forks", + "keys_url": "https://api.github.com/repos/takeisa/nand2tetris-project/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/takeisa/nand2tetris-project/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/takeisa/nand2tetris-project/teams", + "hooks_url": "https://api.github.com/repos/takeisa/nand2tetris-project/hooks", + "issue_events_url": "https://api.github.com/repos/takeisa/nand2tetris-project/issues/events{/number}", + "events_url": "https://api.github.com/repos/takeisa/nand2tetris-project/events", + "assignees_url": "https://api.github.com/repos/takeisa/nand2tetris-project/assignees{/user}", + "branches_url": "https://api.github.com/repos/takeisa/nand2tetris-project/branches{/branch}", + "tags_url": "https://api.github.com/repos/takeisa/nand2tetris-project/tags", + "blobs_url": "https://api.github.com/repos/takeisa/nand2tetris-project/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/takeisa/nand2tetris-project/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/takeisa/nand2tetris-project/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/takeisa/nand2tetris-project/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/takeisa/nand2tetris-project/statuses/{sha}", + "languages_url": "https://api.github.com/repos/takeisa/nand2tetris-project/languages", + "stargazers_url": "https://api.github.com/repos/takeisa/nand2tetris-project/stargazers", + "contributors_url": "https://api.github.com/repos/takeisa/nand2tetris-project/contributors", + "subscribers_url": "https://api.github.com/repos/takeisa/nand2tetris-project/subscribers", + "subscription_url": "https://api.github.com/repos/takeisa/nand2tetris-project/subscription", + "commits_url": "https://api.github.com/repos/takeisa/nand2tetris-project/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/takeisa/nand2tetris-project/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/takeisa/nand2tetris-project/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/takeisa/nand2tetris-project/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/takeisa/nand2tetris-project/contents/{+path}", + "compare_url": "https://api.github.com/repos/takeisa/nand2tetris-project/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/takeisa/nand2tetris-project/merges", + "archive_url": "https://api.github.com/repos/takeisa/nand2tetris-project/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/takeisa/nand2tetris-project/downloads", + "issues_url": "https://api.github.com/repos/takeisa/nand2tetris-project/issues{/number}", + "pulls_url": "https://api.github.com/repos/takeisa/nand2tetris-project/pulls{/number}", + "milestones_url": "https://api.github.com/repos/takeisa/nand2tetris-project/milestones{/number}", + "notifications_url": "https://api.github.com/repos/takeisa/nand2tetris-project/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/takeisa/nand2tetris-project/labels{/name}", + "releases_url": "https://api.github.com/repos/takeisa/nand2tetris-project/releases{/id}", + "deployments_url": "https://api.github.com/repos/takeisa/nand2tetris-project/deployments", + "created_at": "2015-04-04T09:05:04Z", + "updated_at": "2015-04-19T12:51:09Z", + "pushed_at": "2015-04-19T12:51:09Z", + "git_url": "git://github.com/takeisa/nand2tetris-project.git", + "ssh_url": "git@github.com:takeisa/nand2tetris-project.git", + "clone_url": "https://github.com/takeisa/nand2tetris-project.git", + "svn_url": "https://github.com/takeisa/nand2tetris-project", + "homepage": null, + "size": 312, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.935171 + }, + { + "id": 44459942, + "name": "nand2tetris", + "full_name": "landretk/nand2tetris", + "owner": { + "login": "landretk", + "id": 4535529, + "avatar_url": "https://avatars.githubusercontent.com/u/4535529?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/landretk", + "html_url": "https://github.com/landretk", + "followers_url": "https://api.github.com/users/landretk/followers", + "following_url": "https://api.github.com/users/landretk/following{/other_user}", + "gists_url": "https://api.github.com/users/landretk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/landretk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/landretk/subscriptions", + "organizations_url": "https://api.github.com/users/landretk/orgs", + "repos_url": "https://api.github.com/users/landretk/repos", + "events_url": "https://api.github.com/users/landretk/events{/privacy}", + "received_events_url": "https://api.github.com/users/landretk/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/landretk/nand2tetris", + "description": "Coursework for Nand To Tetris", + "fork": false, + "url": "https://api.github.com/repos/landretk/nand2tetris", + "forks_url": "https://api.github.com/repos/landretk/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/landretk/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/landretk/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/landretk/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/landretk/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/landretk/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/landretk/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/landretk/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/landretk/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/landretk/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/landretk/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/landretk/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/landretk/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/landretk/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/landretk/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/landretk/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/landretk/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/landretk/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/landretk/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/landretk/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/landretk/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/landretk/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/landretk/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/landretk/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/landretk/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/landretk/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/landretk/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/landretk/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/landretk/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/landretk/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/landretk/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/landretk/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/landretk/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/landretk/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/landretk/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/landretk/nand2tetris/deployments", + "created_at": "2015-10-18T00:33:44Z", + "updated_at": "2015-10-18T00:34:59Z", + "pushed_at": "2015-10-29T21:35:34Z", + "git_url": "git://github.com/landretk/nand2tetris.git", + "ssh_url": "git@github.com:landretk/nand2tetris.git", + "clone_url": "https://github.com/landretk/nand2tetris.git", + "svn_url": "https://github.com/landretk/nand2tetris", + "homepage": null, + "size": 344, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.935171 + }, + { + "id": 41434197, + "name": "crcp2330", + "full_name": "rschmidt347/crcp2330", + "owner": { + "login": "rschmidt347", + "id": 13955065, + "avatar_url": "https://avatars.githubusercontent.com/u/13955065?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/rschmidt347", + "html_url": "https://github.com/rschmidt347", + "followers_url": "https://api.github.com/users/rschmidt347/followers", + "following_url": "https://api.github.com/users/rschmidt347/following{/other_user}", + "gists_url": "https://api.github.com/users/rschmidt347/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rschmidt347/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rschmidt347/subscriptions", + "organizations_url": "https://api.github.com/users/rschmidt347/orgs", + "repos_url": "https://api.github.com/users/rschmidt347/repos", + "events_url": "https://api.github.com/users/rschmidt347/events{/privacy}", + "received_events_url": "https://api.github.com/users/rschmidt347/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/rschmidt347/crcp2330", + "description": "Work for Nand to Tetris", + "fork": false, + "url": "https://api.github.com/repos/rschmidt347/crcp2330", + "forks_url": "https://api.github.com/repos/rschmidt347/crcp2330/forks", + "keys_url": "https://api.github.com/repos/rschmidt347/crcp2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/rschmidt347/crcp2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/rschmidt347/crcp2330/teams", + "hooks_url": "https://api.github.com/repos/rschmidt347/crcp2330/hooks", + "issue_events_url": "https://api.github.com/repos/rschmidt347/crcp2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/rschmidt347/crcp2330/events", + "assignees_url": "https://api.github.com/repos/rschmidt347/crcp2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/rschmidt347/crcp2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/rschmidt347/crcp2330/tags", + "blobs_url": "https://api.github.com/repos/rschmidt347/crcp2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/rschmidt347/crcp2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/rschmidt347/crcp2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/rschmidt347/crcp2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/rschmidt347/crcp2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/rschmidt347/crcp2330/languages", + "stargazers_url": "https://api.github.com/repos/rschmidt347/crcp2330/stargazers", + "contributors_url": "https://api.github.com/repos/rschmidt347/crcp2330/contributors", + "subscribers_url": "https://api.github.com/repos/rschmidt347/crcp2330/subscribers", + "subscription_url": "https://api.github.com/repos/rschmidt347/crcp2330/subscription", + "commits_url": "https://api.github.com/repos/rschmidt347/crcp2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/rschmidt347/crcp2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/rschmidt347/crcp2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/rschmidt347/crcp2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/rschmidt347/crcp2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/rschmidt347/crcp2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/rschmidt347/crcp2330/merges", + "archive_url": "https://api.github.com/repos/rschmidt347/crcp2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/rschmidt347/crcp2330/downloads", + "issues_url": "https://api.github.com/repos/rschmidt347/crcp2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/rschmidt347/crcp2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/rschmidt347/crcp2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/rschmidt347/crcp2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/rschmidt347/crcp2330/labels{/name}", + "releases_url": "https://api.github.com/repos/rschmidt347/crcp2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/rschmidt347/crcp2330/deployments", + "created_at": "2015-08-26T15:39:55Z", + "updated_at": "2015-08-29T06:15:59Z", + "pushed_at": "2015-12-02T18:53:38Z", + "git_url": "git://github.com/rschmidt347/crcp2330.git", + "ssh_url": "git@github.com:rschmidt347/crcp2330.git", + "clone_url": "https://github.com/rschmidt347/crcp2330.git", + "svn_url": "https://github.com/rschmidt347/crcp2330", + "homepage": null, + "size": 179, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.935171 + }, + { + "id": 53330407, + "name": "Nand2Tetris", + "full_name": "OppenheimerAndTheMartians/Nand2Tetris", + "owner": { + "login": "OppenheimerAndTheMartians", + "id": 6571778, + "avatar_url": "https://avatars.githubusercontent.com/u/6571778?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/OppenheimerAndTheMartians", + "html_url": "https://github.com/OppenheimerAndTheMartians", + "followers_url": "https://api.github.com/users/OppenheimerAndTheMartians/followers", + "following_url": "https://api.github.com/users/OppenheimerAndTheMartians/following{/other_user}", + "gists_url": "https://api.github.com/users/OppenheimerAndTheMartians/gists{/gist_id}", + "starred_url": "https://api.github.com/users/OppenheimerAndTheMartians/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/OppenheimerAndTheMartians/subscriptions", + "organizations_url": "https://api.github.com/users/OppenheimerAndTheMartians/orgs", + "repos_url": "https://api.github.com/users/OppenheimerAndTheMartians/repos", + "events_url": "https://api.github.com/users/OppenheimerAndTheMartians/events{/privacy}", + "received_events_url": "https://api.github.com/users/OppenheimerAndTheMartians/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/OppenheimerAndTheMartians/Nand2Tetris", + "description": "From Nand To Tetris code", + "fork": false, + "url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris", + "forks_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/OppenheimerAndTheMartians/Nand2Tetris/deployments", + "created_at": "2016-03-07T14:11:11Z", + "updated_at": "2016-03-07T14:35:37Z", + "pushed_at": "2016-04-03T22:49:53Z", + "git_url": "git://github.com/OppenheimerAndTheMartians/Nand2Tetris.git", + "ssh_url": "git@github.com:OppenheimerAndTheMartians/Nand2Tetris.git", + "clone_url": "https://github.com/OppenheimerAndTheMartians/Nand2Tetris.git", + "svn_url": "https://github.com/OppenheimerAndTheMartians/Nand2Tetris", + "homepage": null, + "size": 227, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.935171 + }, + { + "id": 49641500, + "name": "from-nand-to-tetris-I", + "full_name": "mottosso/from-nand-to-tetris-I", + "owner": { + "login": "mottosso", + "id": 2152766, + "avatar_url": "https://avatars.githubusercontent.com/u/2152766?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/mottosso", + "html_url": "https://github.com/mottosso", + "followers_url": "https://api.github.com/users/mottosso/followers", + "following_url": "https://api.github.com/users/mottosso/following{/other_user}", + "gists_url": "https://api.github.com/users/mottosso/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mottosso/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mottosso/subscriptions", + "organizations_url": "https://api.github.com/users/mottosso/orgs", + "repos_url": "https://api.github.com/users/mottosso/repos", + "events_url": "https://api.github.com/users/mottosso/events{/privacy}", + "received_events_url": "https://api.github.com/users/mottosso/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/mottosso/from-nand-to-tetris-I", + "description": "From NAND to Tetris I", + "fork": false, + "url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I", + "forks_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/forks", + "keys_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/teams", + "hooks_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/hooks", + "issue_events_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/issues/events{/number}", + "events_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/events", + "assignees_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/assignees{/user}", + "branches_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/branches{/branch}", + "tags_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/tags", + "blobs_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/languages", + "stargazers_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/stargazers", + "contributors_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/contributors", + "subscribers_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/subscribers", + "subscription_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/subscription", + "commits_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/contents/{+path}", + "compare_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/merges", + "archive_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/downloads", + "issues_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/issues{/number}", + "pulls_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/labels{/name}", + "releases_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/releases{/id}", + "deployments_url": "https://api.github.com/repos/mottosso/from-nand-to-tetris-I/deployments", + "created_at": "2016-01-14T10:50:06Z", + "updated_at": "2016-01-14T13:13:25Z", + "pushed_at": "2016-05-08T11:49:40Z", + "git_url": "git://github.com/mottosso/from-nand-to-tetris-I.git", + "ssh_url": "git@github.com:mottosso/from-nand-to-tetris-I.git", + "clone_url": "https://github.com/mottosso/from-nand-to-tetris-I.git", + "svn_url": "https://github.com/mottosso/from-nand-to-tetris-I", + "homepage": null, + "size": 216, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.935171 + }, + { + "id": 7613729, + "name": "nand2tetris", + "full_name": "alexpaulzor/nand2tetris", + "owner": { + "login": "alexpaulzor", + "id": 150549, + "avatar_url": "https://avatars.githubusercontent.com/u/150549?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/alexpaulzor", + "html_url": "https://github.com/alexpaulzor", + "followers_url": "https://api.github.com/users/alexpaulzor/followers", + "following_url": "https://api.github.com/users/alexpaulzor/following{/other_user}", + "gists_url": "https://api.github.com/users/alexpaulzor/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alexpaulzor/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alexpaulzor/subscriptions", + "organizations_url": "https://api.github.com/users/alexpaulzor/orgs", + "repos_url": "https://api.github.com/users/alexpaulzor/repos", + "events_url": "https://api.github.com/users/alexpaulzor/events{/privacy}", + "received_events_url": "https://api.github.com/users/alexpaulzor/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alexpaulzor/nand2tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/alexpaulzor/nand2tetris", + "forks_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/alexpaulzor/nand2tetris/deployments", + "created_at": "2013-01-14T22:10:58Z", + "updated_at": "2013-09-29T17:34:52Z", + "pushed_at": "2013-02-17T00:51:10Z", + "git_url": "git://github.com/alexpaulzor/nand2tetris.git", + "ssh_url": "git@github.com:alexpaulzor/nand2tetris.git", + "clone_url": "https://github.com/alexpaulzor/nand2tetris.git", + "svn_url": "https://github.com/alexpaulzor/nand2tetris", + "homepage": null, + "size": 651, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.649681 + }, + { + "id": 41434195, + "name": "crcp2330", + "full_name": "hambethany1/crcp2330", + "owner": { + "login": "hambethany1", + "id": 11997875, + "avatar_url": "https://avatars.githubusercontent.com/u/11997875?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/hambethany1", + "html_url": "https://github.com/hambethany1", + "followers_url": "https://api.github.com/users/hambethany1/followers", + "following_url": "https://api.github.com/users/hambethany1/following{/other_user}", + "gists_url": "https://api.github.com/users/hambethany1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hambethany1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hambethany1/subscriptions", + "organizations_url": "https://api.github.com/users/hambethany1/orgs", + "repos_url": "https://api.github.com/users/hambethany1/repos", + "events_url": "https://api.github.com/users/hambethany1/events{/privacy}", + "received_events_url": "https://api.github.com/users/hambethany1/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/hambethany1/crcp2330", + "description": "My work for Nand to Tetris", + "fork": false, + "url": "https://api.github.com/repos/hambethany1/crcp2330", + "forks_url": "https://api.github.com/repos/hambethany1/crcp2330/forks", + "keys_url": "https://api.github.com/repos/hambethany1/crcp2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hambethany1/crcp2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hambethany1/crcp2330/teams", + "hooks_url": "https://api.github.com/repos/hambethany1/crcp2330/hooks", + "issue_events_url": "https://api.github.com/repos/hambethany1/crcp2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/hambethany1/crcp2330/events", + "assignees_url": "https://api.github.com/repos/hambethany1/crcp2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/hambethany1/crcp2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/hambethany1/crcp2330/tags", + "blobs_url": "https://api.github.com/repos/hambethany1/crcp2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hambethany1/crcp2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hambethany1/crcp2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hambethany1/crcp2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hambethany1/crcp2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hambethany1/crcp2330/languages", + "stargazers_url": "https://api.github.com/repos/hambethany1/crcp2330/stargazers", + "contributors_url": "https://api.github.com/repos/hambethany1/crcp2330/contributors", + "subscribers_url": "https://api.github.com/repos/hambethany1/crcp2330/subscribers", + "subscription_url": "https://api.github.com/repos/hambethany1/crcp2330/subscription", + "commits_url": "https://api.github.com/repos/hambethany1/crcp2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hambethany1/crcp2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hambethany1/crcp2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hambethany1/crcp2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hambethany1/crcp2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/hambethany1/crcp2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hambethany1/crcp2330/merges", + "archive_url": "https://api.github.com/repos/hambethany1/crcp2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hambethany1/crcp2330/downloads", + "issues_url": "https://api.github.com/repos/hambethany1/crcp2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/hambethany1/crcp2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hambethany1/crcp2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hambethany1/crcp2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hambethany1/crcp2330/labels{/name}", + "releases_url": "https://api.github.com/repos/hambethany1/crcp2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/hambethany1/crcp2330/deployments", + "created_at": "2015-08-26T15:39:55Z", + "updated_at": "2015-08-28T15:19:44Z", + "pushed_at": "2015-12-10T21:56:42Z", + "git_url": "git://github.com/hambethany1/crcp2330.git", + "ssh_url": "git@github.com:hambethany1/crcp2330.git", + "clone_url": "https://github.com/hambethany1/crcp2330.git", + "svn_url": "https://github.com/hambethany1/crcp2330", + "homepage": null, + "size": 190, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.1283703 + }, + { + "id": 41434200, + "name": "crcp2330", + "full_name": "matthewLee711/crcp2330", + "owner": { + "login": "matthewLee711", + "id": 9796894, + "avatar_url": "https://avatars.githubusercontent.com/u/9796894?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/matthewLee711", + "html_url": "https://github.com/matthewLee711", + "followers_url": "https://api.github.com/users/matthewLee711/followers", + "following_url": "https://api.github.com/users/matthewLee711/following{/other_user}", + "gists_url": "https://api.github.com/users/matthewLee711/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthewLee711/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthewLee711/subscriptions", + "organizations_url": "https://api.github.com/users/matthewLee711/orgs", + "repos_url": "https://api.github.com/users/matthewLee711/repos", + "events_url": "https://api.github.com/users/matthewLee711/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthewLee711/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/matthewLee711/crcp2330", + "description": "My work in Nand to Tetris", + "fork": false, + "url": "https://api.github.com/repos/matthewLee711/crcp2330", + "forks_url": "https://api.github.com/repos/matthewLee711/crcp2330/forks", + "keys_url": "https://api.github.com/repos/matthewLee711/crcp2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/matthewLee711/crcp2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/matthewLee711/crcp2330/teams", + "hooks_url": "https://api.github.com/repos/matthewLee711/crcp2330/hooks", + "issue_events_url": "https://api.github.com/repos/matthewLee711/crcp2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/matthewLee711/crcp2330/events", + "assignees_url": "https://api.github.com/repos/matthewLee711/crcp2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/matthewLee711/crcp2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/matthewLee711/crcp2330/tags", + "blobs_url": "https://api.github.com/repos/matthewLee711/crcp2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/matthewLee711/crcp2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/matthewLee711/crcp2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/matthewLee711/crcp2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/matthewLee711/crcp2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/matthewLee711/crcp2330/languages", + "stargazers_url": "https://api.github.com/repos/matthewLee711/crcp2330/stargazers", + "contributors_url": "https://api.github.com/repos/matthewLee711/crcp2330/contributors", + "subscribers_url": "https://api.github.com/repos/matthewLee711/crcp2330/subscribers", + "subscription_url": "https://api.github.com/repos/matthewLee711/crcp2330/subscription", + "commits_url": "https://api.github.com/repos/matthewLee711/crcp2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/matthewLee711/crcp2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/matthewLee711/crcp2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/matthewLee711/crcp2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/matthewLee711/crcp2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/matthewLee711/crcp2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/matthewLee711/crcp2330/merges", + "archive_url": "https://api.github.com/repos/matthewLee711/crcp2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/matthewLee711/crcp2330/downloads", + "issues_url": "https://api.github.com/repos/matthewLee711/crcp2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/matthewLee711/crcp2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/matthewLee711/crcp2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/matthewLee711/crcp2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/matthewLee711/crcp2330/labels{/name}", + "releases_url": "https://api.github.com/repos/matthewLee711/crcp2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/matthewLee711/crcp2330/deployments", + "created_at": "2015-08-26T15:39:56Z", + "updated_at": "2015-08-28T02:40:52Z", + "pushed_at": "2015-12-10T10:14:40Z", + "git_url": "git://github.com/matthewLee711/crcp2330.git", + "ssh_url": "git@github.com:matthewLee711/crcp2330.git", + "clone_url": "https://github.com/matthewLee711/crcp2330.git", + "svn_url": "https://github.com/matthewLee711/crcp2330", + "homepage": null, + "size": 185, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.1187496 + }, + { + "id": 40453756, + "name": "tetris26", + "full_name": "udibr/tetris26", + "owner": { + "login": "udibr", + "id": 608789, + "avatar_url": "https://avatars.githubusercontent.com/u/608789?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/udibr", + "html_url": "https://github.com/udibr", + "followers_url": "https://api.github.com/users/udibr/followers", + "following_url": "https://api.github.com/users/udibr/following{/other_user}", + "gists_url": "https://api.github.com/users/udibr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/udibr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/udibr/subscriptions", + "organizations_url": "https://api.github.com/users/udibr/orgs", + "repos_url": "https://api.github.com/users/udibr/repos", + "events_url": "https://api.github.com/users/udibr/events{/privacy}", + "received_events_url": "https://api.github.com/users/udibr/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/udibr/tetris26", + "description": "Tetris bin for Atari 2600 and Stella ", + "fork": false, + "url": "https://api.github.com/repos/udibr/tetris26", + "forks_url": "https://api.github.com/repos/udibr/tetris26/forks", + "keys_url": "https://api.github.com/repos/udibr/tetris26/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/udibr/tetris26/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/udibr/tetris26/teams", + "hooks_url": "https://api.github.com/repos/udibr/tetris26/hooks", + "issue_events_url": "https://api.github.com/repos/udibr/tetris26/issues/events{/number}", + "events_url": "https://api.github.com/repos/udibr/tetris26/events", + "assignees_url": "https://api.github.com/repos/udibr/tetris26/assignees{/user}", + "branches_url": "https://api.github.com/repos/udibr/tetris26/branches{/branch}", + "tags_url": "https://api.github.com/repos/udibr/tetris26/tags", + "blobs_url": "https://api.github.com/repos/udibr/tetris26/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/udibr/tetris26/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/udibr/tetris26/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/udibr/tetris26/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/udibr/tetris26/statuses/{sha}", + "languages_url": "https://api.github.com/repos/udibr/tetris26/languages", + "stargazers_url": "https://api.github.com/repos/udibr/tetris26/stargazers", + "contributors_url": "https://api.github.com/repos/udibr/tetris26/contributors", + "subscribers_url": "https://api.github.com/repos/udibr/tetris26/subscribers", + "subscription_url": "https://api.github.com/repos/udibr/tetris26/subscription", + "commits_url": "https://api.github.com/repos/udibr/tetris26/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/udibr/tetris26/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/udibr/tetris26/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/udibr/tetris26/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/udibr/tetris26/contents/{+path}", + "compare_url": "https://api.github.com/repos/udibr/tetris26/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/udibr/tetris26/merges", + "archive_url": "https://api.github.com/repos/udibr/tetris26/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/udibr/tetris26/downloads", + "issues_url": "https://api.github.com/repos/udibr/tetris26/issues{/number}", + "pulls_url": "https://api.github.com/repos/udibr/tetris26/pulls{/number}", + "milestones_url": "https://api.github.com/repos/udibr/tetris26/milestones{/number}", + "notifications_url": "https://api.github.com/repos/udibr/tetris26/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/udibr/tetris26/labels{/name}", + "releases_url": "https://api.github.com/repos/udibr/tetris26/releases{/id}", + "deployments_url": "https://api.github.com/repos/udibr/tetris26/deployments", + "created_at": "2015-08-09T23:13:26Z", + "updated_at": "2015-08-12T20:46:45Z", + "pushed_at": "2015-08-10T20:11:46Z", + "git_url": "git://github.com/udibr/tetris26.git", + "ssh_url": "git@github.com:udibr/tetris26.git", + "clone_url": "https://github.com/udibr/tetris26.git", + "svn_url": "https://github.com/udibr/tetris26", + "homepage": "", + "size": 144, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 1, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "score": 5.1069784 + }, + { + "id": 41434196, + "name": "crcp2330", + "full_name": "sadiedonnelly/crcp2330", + "owner": { + "login": "sadiedonnelly", + "id": 13947637, + "avatar_url": "https://avatars.githubusercontent.com/u/13947637?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/sadiedonnelly", + "html_url": "https://github.com/sadiedonnelly", + "followers_url": "https://api.github.com/users/sadiedonnelly/followers", + "following_url": "https://api.github.com/users/sadiedonnelly/following{/other_user}", + "gists_url": "https://api.github.com/users/sadiedonnelly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sadiedonnelly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sadiedonnelly/subscriptions", + "organizations_url": "https://api.github.com/users/sadiedonnelly/orgs", + "repos_url": "https://api.github.com/users/sadiedonnelly/repos", + "events_url": "https://api.github.com/users/sadiedonnelly/events{/privacy}", + "received_events_url": "https://api.github.com/users/sadiedonnelly/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/sadiedonnelly/crcp2330", + "description": "My work for NAND to Tetris", + "fork": false, + "url": "https://api.github.com/repos/sadiedonnelly/crcp2330", + "forks_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/forks", + "keys_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/teams", + "hooks_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/hooks", + "issue_events_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/issues/events{/number}", + "events_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/events", + "assignees_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/assignees{/user}", + "branches_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/branches{/branch}", + "tags_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/tags", + "blobs_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/languages", + "stargazers_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/stargazers", + "contributors_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/contributors", + "subscribers_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/subscribers", + "subscription_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/subscription", + "commits_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/contents/{+path}", + "compare_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/merges", + "archive_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/downloads", + "issues_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/issues{/number}", + "pulls_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/labels{/name}", + "releases_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/releases{/id}", + "deployments_url": "https://api.github.com/repos/sadiedonnelly/crcp2330/deployments", + "created_at": "2015-08-26T15:39:55Z", + "updated_at": "2015-08-26T16:45:07Z", + "pushed_at": "2015-12-10T20:48:04Z", + "git_url": "git://github.com/sadiedonnelly/crcp2330.git", + "ssh_url": "git@github.com:sadiedonnelly/crcp2330.git", + "clone_url": "https://github.com/sadiedonnelly/crcp2330.git", + "svn_url": "https://github.com/sadiedonnelly/crcp2330", + "homepage": null, + "size": 194, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 5.1069784 + }, + { + "id": 7912192, + "name": "TetrisASM", + "full_name": "BuzzVII/TetrisASM", + "owner": { + "login": "BuzzVII", + "id": 3426214, + "avatar_url": "https://avatars.githubusercontent.com/u/3426214?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/BuzzVII", + "html_url": "https://github.com/BuzzVII", + "followers_url": "https://api.github.com/users/BuzzVII/followers", + "following_url": "https://api.github.com/users/BuzzVII/following{/other_user}", + "gists_url": "https://api.github.com/users/BuzzVII/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BuzzVII/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BuzzVII/subscriptions", + "organizations_url": "https://api.github.com/users/BuzzVII/orgs", + "repos_url": "https://api.github.com/users/BuzzVII/repos", + "events_url": "https://api.github.com/users/BuzzVII/events{/privacy}", + "received_events_url": "https://api.github.com/users/BuzzVII/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/BuzzVII/TetrisASM", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/BuzzVII/TetrisASM", + "forks_url": "https://api.github.com/repos/BuzzVII/TetrisASM/forks", + "keys_url": "https://api.github.com/repos/BuzzVII/TetrisASM/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BuzzVII/TetrisASM/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BuzzVII/TetrisASM/teams", + "hooks_url": "https://api.github.com/repos/BuzzVII/TetrisASM/hooks", + "issue_events_url": "https://api.github.com/repos/BuzzVII/TetrisASM/issues/events{/number}", + "events_url": "https://api.github.com/repos/BuzzVII/TetrisASM/events", + "assignees_url": "https://api.github.com/repos/BuzzVII/TetrisASM/assignees{/user}", + "branches_url": "https://api.github.com/repos/BuzzVII/TetrisASM/branches{/branch}", + "tags_url": "https://api.github.com/repos/BuzzVII/TetrisASM/tags", + "blobs_url": "https://api.github.com/repos/BuzzVII/TetrisASM/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BuzzVII/TetrisASM/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BuzzVII/TetrisASM/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BuzzVII/TetrisASM/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BuzzVII/TetrisASM/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BuzzVII/TetrisASM/languages", + "stargazers_url": "https://api.github.com/repos/BuzzVII/TetrisASM/stargazers", + "contributors_url": "https://api.github.com/repos/BuzzVII/TetrisASM/contributors", + "subscribers_url": "https://api.github.com/repos/BuzzVII/TetrisASM/subscribers", + "subscription_url": "https://api.github.com/repos/BuzzVII/TetrisASM/subscription", + "commits_url": "https://api.github.com/repos/BuzzVII/TetrisASM/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BuzzVII/TetrisASM/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BuzzVII/TetrisASM/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BuzzVII/TetrisASM/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/BuzzVII/TetrisASM/contents/{+path}", + "compare_url": "https://api.github.com/repos/BuzzVII/TetrisASM/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BuzzVII/TetrisASM/merges", + "archive_url": "https://api.github.com/repos/BuzzVII/TetrisASM/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BuzzVII/TetrisASM/downloads", + "issues_url": "https://api.github.com/repos/BuzzVII/TetrisASM/issues{/number}", + "pulls_url": "https://api.github.com/repos/BuzzVII/TetrisASM/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BuzzVII/TetrisASM/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BuzzVII/TetrisASM/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BuzzVII/TetrisASM/labels{/name}", + "releases_url": "https://api.github.com/repos/BuzzVII/TetrisASM/releases{/id}", + "deployments_url": "https://api.github.com/repos/BuzzVII/TetrisASM/deployments", + "created_at": "2013-01-30T10:09:17Z", + "updated_at": "2014-04-03T16:00:02Z", + "pushed_at": "2013-01-30T10:35:01Z", + "git_url": "git://github.com/BuzzVII/TetrisASM.git", + "ssh_url": "git@github.com:BuzzVII/TetrisASM.git", + "clone_url": "https://github.com/BuzzVII/TetrisASM.git", + "svn_url": "https://github.com/BuzzVII/TetrisASM", + "homepage": null, + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.5530896 + }, + { + "id": 34637237, + "name": "nand2tetris", + "full_name": "andreoliva/nand2tetris", + "owner": { + "login": "andreoliva", + "id": 2464037, + "avatar_url": "https://avatars.githubusercontent.com/u/2464037?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/andreoliva", + "html_url": "https://github.com/andreoliva", + "followers_url": "https://api.github.com/users/andreoliva/followers", + "following_url": "https://api.github.com/users/andreoliva/following{/other_user}", + "gists_url": "https://api.github.com/users/andreoliva/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andreoliva/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andreoliva/subscriptions", + "organizations_url": "https://api.github.com/users/andreoliva/orgs", + "repos_url": "https://api.github.com/users/andreoliva/repos", + "events_url": "https://api.github.com/users/andreoliva/events{/privacy}", + "received_events_url": "https://api.github.com/users/andreoliva/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/andreoliva/nand2tetris", + "description": "Files from Coursera's \"Nand to Tetris\" course.", + "fork": false, + "url": "https://api.github.com/repos/andreoliva/nand2tetris", + "forks_url": "https://api.github.com/repos/andreoliva/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/andreoliva/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andreoliva/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andreoliva/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/andreoliva/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/andreoliva/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/andreoliva/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/andreoliva/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/andreoliva/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/andreoliva/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/andreoliva/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andreoliva/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andreoliva/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andreoliva/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andreoliva/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andreoliva/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/andreoliva/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/andreoliva/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/andreoliva/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/andreoliva/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/andreoliva/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andreoliva/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andreoliva/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andreoliva/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andreoliva/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/andreoliva/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andreoliva/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/andreoliva/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andreoliva/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/andreoliva/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/andreoliva/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andreoliva/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andreoliva/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andreoliva/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/andreoliva/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/andreoliva/nand2tetris/deployments", + "created_at": "2015-04-27T00:05:51Z", + "updated_at": "2015-11-19T16:59:14Z", + "pushed_at": "2015-05-25T03:52:49Z", + "git_url": "git://github.com/andreoliva/nand2tetris.git", + "ssh_url": "git@github.com:andreoliva/nand2tetris.git", + "clone_url": "https://github.com/andreoliva/nand2tetris.git", + "svn_url": "https://github.com/andreoliva/nand2tetris", + "homepage": "", + "size": 676, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.273642 + }, + { + "id": 7260682, + "name": "LL-Asm-tetris", + "full_name": "FTwO-O/LL-Asm-tetris", + "owner": { + "login": "FTwO-O", + "id": 750207, + "avatar_url": "https://avatars.githubusercontent.com/u/750207?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/FTwO-O", + "html_url": "https://github.com/FTwO-O", + "followers_url": "https://api.github.com/users/FTwO-O/followers", + "following_url": "https://api.github.com/users/FTwO-O/following{/other_user}", + "gists_url": "https://api.github.com/users/FTwO-O/gists{/gist_id}", + "starred_url": "https://api.github.com/users/FTwO-O/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/FTwO-O/subscriptions", + "organizations_url": "https://api.github.com/users/FTwO-O/orgs", + "repos_url": "https://api.github.com/users/FTwO-O/repos", + "events_url": "https://api.github.com/users/FTwO-O/events{/privacy}", + "received_events_url": "https://api.github.com/users/FTwO-O/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/FTwO-O/LL-Asm-tetris", + "description": "ASM implentation of tetris game, for Assembly language learning.", + "fork": false, + "url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris", + "forks_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/forks", + "keys_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/teams", + "hooks_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/hooks", + "issue_events_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/events", + "assignees_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/tags", + "blobs_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/languages", + "stargazers_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/stargazers", + "contributors_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/contributors", + "subscribers_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/subscribers", + "subscription_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/subscription", + "commits_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/merges", + "archive_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/downloads", + "issues_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/FTwO-O/LL-Asm-tetris/deployments", + "created_at": "2012-12-20T16:28:14Z", + "updated_at": "2016-03-08T14:43:27Z", + "pushed_at": "2012-12-20T16:34:26Z", + "git_url": "git://github.com/FTwO-O/LL-Asm-tetris.git", + "ssh_url": "git@github.com:FTwO-O/LL-Asm-tetris.git", + "clone_url": "https://github.com/FTwO-O/LL-Asm-tetris.git", + "svn_url": "https://github.com/FTwO-O/LL-Asm-tetris", + "homepage": "", + "size": 375, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.273642 + }, + { + "id": 10775059, + "name": "NAND2Tetris", + "full_name": "zpartal/NAND2Tetris", + "owner": { + "login": "zpartal", + "id": 1432346, + "avatar_url": "https://avatars.githubusercontent.com/u/1432346?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/zpartal", + "html_url": "https://github.com/zpartal", + "followers_url": "https://api.github.com/users/zpartal/followers", + "following_url": "https://api.github.com/users/zpartal/following{/other_user}", + "gists_url": "https://api.github.com/users/zpartal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zpartal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zpartal/subscriptions", + "organizations_url": "https://api.github.com/users/zpartal/orgs", + "repos_url": "https://api.github.com/users/zpartal/repos", + "events_url": "https://api.github.com/users/zpartal/events{/privacy}", + "received_events_url": "https://api.github.com/users/zpartal/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/zpartal/NAND2Tetris", + "description": "All my code for the NAND 2 Tetris project. ", + "fork": false, + "url": "https://api.github.com/repos/zpartal/NAND2Tetris", + "forks_url": "https://api.github.com/repos/zpartal/NAND2Tetris/forks", + "keys_url": "https://api.github.com/repos/zpartal/NAND2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/zpartal/NAND2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/zpartal/NAND2Tetris/teams", + "hooks_url": "https://api.github.com/repos/zpartal/NAND2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/zpartal/NAND2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/zpartal/NAND2Tetris/events", + "assignees_url": "https://api.github.com/repos/zpartal/NAND2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/zpartal/NAND2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/zpartal/NAND2Tetris/tags", + "blobs_url": "https://api.github.com/repos/zpartal/NAND2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/zpartal/NAND2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/zpartal/NAND2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/zpartal/NAND2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/zpartal/NAND2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/zpartal/NAND2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/zpartal/NAND2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/zpartal/NAND2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/zpartal/NAND2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/zpartal/NAND2Tetris/subscription", + "commits_url": "https://api.github.com/repos/zpartal/NAND2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/zpartal/NAND2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/zpartal/NAND2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/zpartal/NAND2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/zpartal/NAND2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/zpartal/NAND2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/zpartal/NAND2Tetris/merges", + "archive_url": "https://api.github.com/repos/zpartal/NAND2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/zpartal/NAND2Tetris/downloads", + "issues_url": "https://api.github.com/repos/zpartal/NAND2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/zpartal/NAND2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/zpartal/NAND2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/zpartal/NAND2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/zpartal/NAND2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/zpartal/NAND2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/zpartal/NAND2Tetris/deployments", + "created_at": "2013-06-18T22:37:22Z", + "updated_at": "2013-12-16T03:59:44Z", + "pushed_at": "2013-12-16T03:59:43Z", + "git_url": "git://github.com/zpartal/NAND2Tetris.git", + "ssh_url": "git@github.com:zpartal/NAND2Tetris.git", + "clone_url": "https://github.com/zpartal/NAND2Tetris.git", + "svn_url": "https://github.com/zpartal/NAND2Tetris", + "homepage": "", + "size": 300, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.265625 + }, + { + "id": 26594118, + "name": "nand2Tetris", + "full_name": "mfbadr/nand2Tetris", + "owner": { + "login": "mfbadr", + "id": 8029306, + "avatar_url": "https://avatars.githubusercontent.com/u/8029306?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/mfbadr", + "html_url": "https://github.com/mfbadr", + "followers_url": "https://api.github.com/users/mfbadr/followers", + "following_url": "https://api.github.com/users/mfbadr/following{/other_user}", + "gists_url": "https://api.github.com/users/mfbadr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mfbadr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mfbadr/subscriptions", + "organizations_url": "https://api.github.com/users/mfbadr/orgs", + "repos_url": "https://api.github.com/users/mfbadr/repos", + "events_url": "https://api.github.com/users/mfbadr/events{/privacy}", + "received_events_url": "https://api.github.com/users/mfbadr/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/mfbadr/nand2Tetris", + "description": "Working through a CS course, building tetris starting from NAND", + "fork": false, + "url": "https://api.github.com/repos/mfbadr/nand2Tetris", + "forks_url": "https://api.github.com/repos/mfbadr/nand2Tetris/forks", + "keys_url": "https://api.github.com/repos/mfbadr/nand2Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mfbadr/nand2Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mfbadr/nand2Tetris/teams", + "hooks_url": "https://api.github.com/repos/mfbadr/nand2Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/mfbadr/nand2Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/mfbadr/nand2Tetris/events", + "assignees_url": "https://api.github.com/repos/mfbadr/nand2Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/mfbadr/nand2Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/mfbadr/nand2Tetris/tags", + "blobs_url": "https://api.github.com/repos/mfbadr/nand2Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mfbadr/nand2Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mfbadr/nand2Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mfbadr/nand2Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mfbadr/nand2Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mfbadr/nand2Tetris/languages", + "stargazers_url": "https://api.github.com/repos/mfbadr/nand2Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/mfbadr/nand2Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/mfbadr/nand2Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/mfbadr/nand2Tetris/subscription", + "commits_url": "https://api.github.com/repos/mfbadr/nand2Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mfbadr/nand2Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mfbadr/nand2Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mfbadr/nand2Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mfbadr/nand2Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/mfbadr/nand2Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mfbadr/nand2Tetris/merges", + "archive_url": "https://api.github.com/repos/mfbadr/nand2Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mfbadr/nand2Tetris/downloads", + "issues_url": "https://api.github.com/repos/mfbadr/nand2Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/mfbadr/nand2Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mfbadr/nand2Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mfbadr/nand2Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mfbadr/nand2Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/mfbadr/nand2Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/mfbadr/nand2Tetris/deployments", + "created_at": "2014-11-13T15:28:32Z", + "updated_at": "2014-11-13T15:29:38Z", + "pushed_at": "2014-11-13T15:29:38Z", + "git_url": "git://github.com/mfbadr/nand2Tetris.git", + "ssh_url": "git@github.com:mfbadr/nand2Tetris.git", + "clone_url": "https://github.com/mfbadr/nand2Tetris.git", + "svn_url": "https://github.com/mfbadr/nand2Tetris", + "homepage": null, + "size": 616, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.265625 + }, + { + "id": 44864853, + "name": "FromNandToTetris", + "full_name": "Neal-liu/FromNandToTetris", + "owner": { + "login": "Neal-liu", + "id": 5592660, + "avatar_url": "https://avatars.githubusercontent.com/u/5592660?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Neal-liu", + "html_url": "https://github.com/Neal-liu", + "followers_url": "https://api.github.com/users/Neal-liu/followers", + "following_url": "https://api.github.com/users/Neal-liu/following{/other_user}", + "gists_url": "https://api.github.com/users/Neal-liu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Neal-liu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Neal-liu/subscriptions", + "organizations_url": "https://api.github.com/users/Neal-liu/orgs", + "repos_url": "https://api.github.com/users/Neal-liu/repos", + "events_url": "https://api.github.com/users/Neal-liu/events{/privacy}", + "received_events_url": "https://api.github.com/users/Neal-liu/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Neal-liu/FromNandToTetris", + "description": "projects from coursera course : From Nand to Tetris", + "fork": false, + "url": "https://api.github.com/repos/Neal-liu/FromNandToTetris", + "forks_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/forks", + "keys_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/teams", + "hooks_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/hooks", + "issue_events_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/events", + "assignees_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/tags", + "blobs_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/languages", + "stargazers_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/stargazers", + "contributors_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/contributors", + "subscribers_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/subscribers", + "subscription_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/subscription", + "commits_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/merges", + "archive_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/downloads", + "issues_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/labels{/name}", + "releases_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/Neal-liu/FromNandToTetris/deployments", + "created_at": "2015-10-24T12:21:34Z", + "updated_at": "2015-10-24T12:31:10Z", + "pushed_at": "2015-10-24T12:31:09Z", + "git_url": "git://github.com/Neal-liu/FromNandToTetris.git", + "ssh_url": "git@github.com:Neal-liu/FromNandToTetris.git", + "clone_url": "https://github.com/Neal-liu/FromNandToTetris.git", + "svn_url": "https://github.com/Neal-liu/FromNandToTetris", + "homepage": null, + "size": 276, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.265625 + }, + { + "id": 52502116, + "name": "ComputerSimulator", + "full_name": "melvyniandrag/ComputerSimulator", + "owner": { + "login": "melvyniandrag", + "id": 17210565, + "avatar_url": "https://avatars.githubusercontent.com/u/17210565?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/melvyniandrag", + "html_url": "https://github.com/melvyniandrag", + "followers_url": "https://api.github.com/users/melvyniandrag/followers", + "following_url": "https://api.github.com/users/melvyniandrag/following{/other_user}", + "gists_url": "https://api.github.com/users/melvyniandrag/gists{/gist_id}", + "starred_url": "https://api.github.com/users/melvyniandrag/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/melvyniandrag/subscriptions", + "organizations_url": "https://api.github.com/users/melvyniandrag/orgs", + "repos_url": "https://api.github.com/users/melvyniandrag/repos", + "events_url": "https://api.github.com/users/melvyniandrag/events{/privacy}", + "received_events_url": "https://api.github.com/users/melvyniandrag/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/melvyniandrag/ComputerSimulator", + "description": "Course work for the NAND to Tetris course one coursera.", + "fork": false, + "url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator", + "forks_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/forks", + "keys_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/teams", + "hooks_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/hooks", + "issue_events_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/issues/events{/number}", + "events_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/events", + "assignees_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/assignees{/user}", + "branches_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/branches{/branch}", + "tags_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/tags", + "blobs_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/statuses/{sha}", + "languages_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/languages", + "stargazers_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/stargazers", + "contributors_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/contributors", + "subscribers_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/subscribers", + "subscription_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/subscription", + "commits_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/contents/{+path}", + "compare_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/merges", + "archive_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/downloads", + "issues_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/issues{/number}", + "pulls_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/pulls{/number}", + "milestones_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/milestones{/number}", + "notifications_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/labels{/name}", + "releases_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/releases{/id}", + "deployments_url": "https://api.github.com/repos/melvyniandrag/ComputerSimulator/deployments", + "created_at": "2016-02-25T06:24:25Z", + "updated_at": "2016-02-25T06:25:04Z", + "pushed_at": "2016-02-25T06:25:02Z", + "git_url": "git://github.com/melvyniandrag/ComputerSimulator.git", + "ssh_url": "git@github.com:melvyniandrag/ComputerSimulator.git", + "clone_url": "https://github.com/melvyniandrag/ComputerSimulator.git", + "svn_url": "https://github.com/melvyniandrag/ComputerSimulator", + "homepage": null, + "size": 508, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.265625 + }, + { + "id": 26361387, + "name": "hack-assembler", + "full_name": "malharhak2/hack-assembler", + "owner": { + "login": "malharhak2", + "id": 16116044, + "avatar_url": "https://avatars.githubusercontent.com/u/16116044?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/malharhak2", + "html_url": "https://github.com/malharhak2", + "followers_url": "https://api.github.com/users/malharhak2/followers", + "following_url": "https://api.github.com/users/malharhak2/following{/other_user}", + "gists_url": "https://api.github.com/users/malharhak2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/malharhak2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/malharhak2/subscriptions", + "organizations_url": "https://api.github.com/users/malharhak2/orgs", + "repos_url": "https://api.github.com/users/malharhak2/repos", + "events_url": "https://api.github.com/users/malharhak2/events{/privacy}", + "received_events_url": "https://api.github.com/users/malharhak2/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/malharhak2/hack-assembler", + "description": "The hack language assembler for the Nand 2 Tetris course", + "fork": false, + "url": "https://api.github.com/repos/malharhak2/hack-assembler", + "forks_url": "https://api.github.com/repos/malharhak2/hack-assembler/forks", + "keys_url": "https://api.github.com/repos/malharhak2/hack-assembler/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/malharhak2/hack-assembler/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/malharhak2/hack-assembler/teams", + "hooks_url": "https://api.github.com/repos/malharhak2/hack-assembler/hooks", + "issue_events_url": "https://api.github.com/repos/malharhak2/hack-assembler/issues/events{/number}", + "events_url": "https://api.github.com/repos/malharhak2/hack-assembler/events", + "assignees_url": "https://api.github.com/repos/malharhak2/hack-assembler/assignees{/user}", + "branches_url": "https://api.github.com/repos/malharhak2/hack-assembler/branches{/branch}", + "tags_url": "https://api.github.com/repos/malharhak2/hack-assembler/tags", + "blobs_url": "https://api.github.com/repos/malharhak2/hack-assembler/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/malharhak2/hack-assembler/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/malharhak2/hack-assembler/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/malharhak2/hack-assembler/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/malharhak2/hack-assembler/statuses/{sha}", + "languages_url": "https://api.github.com/repos/malharhak2/hack-assembler/languages", + "stargazers_url": "https://api.github.com/repos/malharhak2/hack-assembler/stargazers", + "contributors_url": "https://api.github.com/repos/malharhak2/hack-assembler/contributors", + "subscribers_url": "https://api.github.com/repos/malharhak2/hack-assembler/subscribers", + "subscription_url": "https://api.github.com/repos/malharhak2/hack-assembler/subscription", + "commits_url": "https://api.github.com/repos/malharhak2/hack-assembler/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/malharhak2/hack-assembler/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/malharhak2/hack-assembler/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/malharhak2/hack-assembler/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/malharhak2/hack-assembler/contents/{+path}", + "compare_url": "https://api.github.com/repos/malharhak2/hack-assembler/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/malharhak2/hack-assembler/merges", + "archive_url": "https://api.github.com/repos/malharhak2/hack-assembler/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/malharhak2/hack-assembler/downloads", + "issues_url": "https://api.github.com/repos/malharhak2/hack-assembler/issues{/number}", + "pulls_url": "https://api.github.com/repos/malharhak2/hack-assembler/pulls{/number}", + "milestones_url": "https://api.github.com/repos/malharhak2/hack-assembler/milestones{/number}", + "notifications_url": "https://api.github.com/repos/malharhak2/hack-assembler/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/malharhak2/hack-assembler/labels{/name}", + "releases_url": "https://api.github.com/repos/malharhak2/hack-assembler/releases{/id}", + "deployments_url": "https://api.github.com/repos/malharhak2/hack-assembler/deployments", + "created_at": "2014-11-08T13:30:26Z", + "updated_at": "2015-12-03T09:25:20Z", + "pushed_at": "2014-11-08T18:53:12Z", + "git_url": "git://github.com/malharhak2/hack-assembler.git", + "ssh_url": "git@github.com:malharhak2/hack-assembler.git", + "clone_url": "https://github.com/malharhak2/hack-assembler.git", + "svn_url": "https://github.com/malharhak2/hack-assembler", + "homepage": null, + "size": 152, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.265625 + }, + { + "id": 59680916, + "name": "nand2tetris", + "full_name": "tanderegg/nand2tetris", + "owner": { + "login": "tanderegg", + "id": 100029, + "avatar_url": "https://avatars.githubusercontent.com/u/100029?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/tanderegg", + "html_url": "https://github.com/tanderegg", + "followers_url": "https://api.github.com/users/tanderegg/followers", + "following_url": "https://api.github.com/users/tanderegg/following{/other_user}", + "gists_url": "https://api.github.com/users/tanderegg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tanderegg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tanderegg/subscriptions", + "organizations_url": "https://api.github.com/users/tanderegg/orgs", + "repos_url": "https://api.github.com/users/tanderegg/repos", + "events_url": "https://api.github.com/users/tanderegg/events{/privacy}", + "received_events_url": "https://api.github.com/users/tanderegg/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/tanderegg/nand2tetris", + "description": "My coursework in the Nand to Tetris course", + "fork": false, + "url": "https://api.github.com/repos/tanderegg/nand2tetris", + "forks_url": "https://api.github.com/repos/tanderegg/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/tanderegg/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tanderegg/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tanderegg/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/tanderegg/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/tanderegg/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/tanderegg/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/tanderegg/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/tanderegg/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/tanderegg/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/tanderegg/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tanderegg/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tanderegg/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tanderegg/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tanderegg/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tanderegg/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/tanderegg/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/tanderegg/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/tanderegg/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/tanderegg/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/tanderegg/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tanderegg/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tanderegg/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tanderegg/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tanderegg/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/tanderegg/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tanderegg/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/tanderegg/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tanderegg/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/tanderegg/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/tanderegg/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tanderegg/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tanderegg/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tanderegg/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/tanderegg/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/tanderegg/nand2tetris/deployments", + "created_at": "2016-05-25T16:48:39Z", + "updated_at": "2016-05-25T16:58:40Z", + "pushed_at": "2016-06-08T13:40:55Z", + "git_url": "git://github.com/tanderegg/nand2tetris.git", + "ssh_url": "git@github.com:tanderegg/nand2tetris.git", + "clone_url": "https://github.com/tanderegg/nand2tetris.git", + "svn_url": "https://github.com/tanderegg/nand2tetris", + "homepage": null, + "size": 520, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.265625 + }, + { + "id": 57420901, + "name": "nand2tetrisprojects", + "full_name": "mithunder916/nand2tetrisprojects", + "owner": { + "login": "mithunder916", + "id": 18056098, + "avatar_url": "https://avatars.githubusercontent.com/u/18056098?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/mithunder916", + "html_url": "https://github.com/mithunder916", + "followers_url": "https://api.github.com/users/mithunder916/followers", + "following_url": "https://api.github.com/users/mithunder916/following{/other_user}", + "gists_url": "https://api.github.com/users/mithunder916/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mithunder916/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mithunder916/subscriptions", + "organizations_url": "https://api.github.com/users/mithunder916/orgs", + "repos_url": "https://api.github.com/users/mithunder916/repos", + "events_url": "https://api.github.com/users/mithunder916/events{/privacy}", + "received_events_url": "https://api.github.com/users/mithunder916/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/mithunder916/nand2tetrisprojects", + "description": "Projects for Coursera's Nand to Tetris class", + "fork": false, + "url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects", + "forks_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/forks", + "keys_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/teams", + "hooks_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/hooks", + "issue_events_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/issues/events{/number}", + "events_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/events", + "assignees_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/assignees{/user}", + "branches_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/branches{/branch}", + "tags_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/tags", + "blobs_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/languages", + "stargazers_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/stargazers", + "contributors_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/contributors", + "subscribers_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/subscribers", + "subscription_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/subscription", + "commits_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/contents/{+path}", + "compare_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/merges", + "archive_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/downloads", + "issues_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/issues{/number}", + "pulls_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/labels{/name}", + "releases_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/releases{/id}", + "deployments_url": "https://api.github.com/repos/mithunder916/nand2tetrisprojects/deployments", + "created_at": "2016-04-30T00:45:12Z", + "updated_at": "2016-04-30T00:45:45Z", + "pushed_at": "2016-06-01T02:12:31Z", + "git_url": "git://github.com/mithunder916/nand2tetrisprojects.git", + "ssh_url": "git@github.com:mithunder916/nand2tetrisprojects.git", + "clone_url": "https://github.com/mithunder916/nand2tetrisprojects.git", + "svn_url": "https://github.com/mithunder916/nand2tetrisprojects", + "homepage": null, + "size": 195, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.265625 + }, + { + "id": 41601475, + "name": "blocks-asm", + "full_name": "dtomas/blocks-asm", + "owner": { + "login": "dtomas", + "id": 4202709, + "avatar_url": "https://avatars.githubusercontent.com/u/4202709?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/dtomas", + "html_url": "https://github.com/dtomas", + "followers_url": "https://api.github.com/users/dtomas/followers", + "following_url": "https://api.github.com/users/dtomas/following{/other_user}", + "gists_url": "https://api.github.com/users/dtomas/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dtomas/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dtomas/subscriptions", + "organizations_url": "https://api.github.com/users/dtomas/orgs", + "repos_url": "https://api.github.com/users/dtomas/repos", + "events_url": "https://api.github.com/users/dtomas/events{/privacy}", + "received_events_url": "https://api.github.com/users/dtomas/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/dtomas/blocks-asm", + "description": "Tetris clone for the C64, written in ACME assembler.", + "fork": false, + "url": "https://api.github.com/repos/dtomas/blocks-asm", + "forks_url": "https://api.github.com/repos/dtomas/blocks-asm/forks", + "keys_url": "https://api.github.com/repos/dtomas/blocks-asm/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dtomas/blocks-asm/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dtomas/blocks-asm/teams", + "hooks_url": "https://api.github.com/repos/dtomas/blocks-asm/hooks", + "issue_events_url": "https://api.github.com/repos/dtomas/blocks-asm/issues/events{/number}", + "events_url": "https://api.github.com/repos/dtomas/blocks-asm/events", + "assignees_url": "https://api.github.com/repos/dtomas/blocks-asm/assignees{/user}", + "branches_url": "https://api.github.com/repos/dtomas/blocks-asm/branches{/branch}", + "tags_url": "https://api.github.com/repos/dtomas/blocks-asm/tags", + "blobs_url": "https://api.github.com/repos/dtomas/blocks-asm/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dtomas/blocks-asm/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dtomas/blocks-asm/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dtomas/blocks-asm/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dtomas/blocks-asm/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dtomas/blocks-asm/languages", + "stargazers_url": "https://api.github.com/repos/dtomas/blocks-asm/stargazers", + "contributors_url": "https://api.github.com/repos/dtomas/blocks-asm/contributors", + "subscribers_url": "https://api.github.com/repos/dtomas/blocks-asm/subscribers", + "subscription_url": "https://api.github.com/repos/dtomas/blocks-asm/subscription", + "commits_url": "https://api.github.com/repos/dtomas/blocks-asm/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dtomas/blocks-asm/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dtomas/blocks-asm/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dtomas/blocks-asm/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dtomas/blocks-asm/contents/{+path}", + "compare_url": "https://api.github.com/repos/dtomas/blocks-asm/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dtomas/blocks-asm/merges", + "archive_url": "https://api.github.com/repos/dtomas/blocks-asm/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dtomas/blocks-asm/downloads", + "issues_url": "https://api.github.com/repos/dtomas/blocks-asm/issues{/number}", + "pulls_url": "https://api.github.com/repos/dtomas/blocks-asm/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dtomas/blocks-asm/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dtomas/blocks-asm/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dtomas/blocks-asm/labels{/name}", + "releases_url": "https://api.github.com/repos/dtomas/blocks-asm/releases{/id}", + "deployments_url": "https://api.github.com/repos/dtomas/blocks-asm/deployments", + "created_at": "2015-08-29T17:27:12Z", + "updated_at": "2015-09-11T22:38:55Z", + "pushed_at": "2015-09-11T22:38:54Z", + "git_url": "git://github.com/dtomas/blocks-asm.git", + "ssh_url": "git@github.com:dtomas/blocks-asm.git", + "clone_url": "https://github.com/dtomas/blocks-asm.git", + "svn_url": "https://github.com/dtomas/blocks-asm", + "homepage": "", + "size": 392, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.2558155 + }, + { + "id": 34184497, + "name": "nand2tetris", + "full_name": "yanenok/nand2tetris", + "owner": { + "login": "yanenok", + "id": 5149867, + "avatar_url": "https://avatars.githubusercontent.com/u/5149867?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/yanenok", + "html_url": "https://github.com/yanenok", + "followers_url": "https://api.github.com/users/yanenok/followers", + "following_url": "https://api.github.com/users/yanenok/following{/other_user}", + "gists_url": "https://api.github.com/users/yanenok/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yanenok/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yanenok/subscriptions", + "organizations_url": "https://api.github.com/users/yanenok/orgs", + "repos_url": "https://api.github.com/users/yanenok/repos", + "events_url": "https://api.github.com/users/yanenok/events{/privacy}", + "received_events_url": "https://api.github.com/users/yanenok/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/yanenok/nand2tetris", + "description": "Course projects, From NAND to Tetris - http://www.nand2tetris.org/", + "fork": false, + "url": "https://api.github.com/repos/yanenok/nand2tetris", + "forks_url": "https://api.github.com/repos/yanenok/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/yanenok/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/yanenok/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/yanenok/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/yanenok/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/yanenok/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/yanenok/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/yanenok/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/yanenok/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/yanenok/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/yanenok/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/yanenok/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/yanenok/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/yanenok/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/yanenok/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/yanenok/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/yanenok/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/yanenok/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/yanenok/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/yanenok/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/yanenok/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/yanenok/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/yanenok/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/yanenok/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/yanenok/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/yanenok/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/yanenok/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/yanenok/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/yanenok/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/yanenok/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/yanenok/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/yanenok/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/yanenok/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/yanenok/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/yanenok/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/yanenok/nand2tetris/deployments", + "created_at": "2015-04-18T22:04:20Z", + "updated_at": "2015-05-01T15:40:42Z", + "pushed_at": "2015-05-09T23:50:49Z", + "git_url": "git://github.com/yanenok/nand2tetris.git", + "ssh_url": "git@github.com:yanenok/nand2tetris.git", + "clone_url": "https://github.com/yanenok/nand2tetris.git", + "svn_url": "https://github.com/yanenok/nand2tetris", + "homepage": "", + "size": 332, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.2558155 + }, + { + "id": 15421107, + "name": "nand2tetris", + "full_name": "PeterSR/nand2tetris", + "owner": { + "login": "PeterSR", + "id": 222286, + "avatar_url": "https://avatars.githubusercontent.com/u/222286?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/PeterSR", + "html_url": "https://github.com/PeterSR", + "followers_url": "https://api.github.com/users/PeterSR/followers", + "following_url": "https://api.github.com/users/PeterSR/following{/other_user}", + "gists_url": "https://api.github.com/users/PeterSR/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PeterSR/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PeterSR/subscriptions", + "organizations_url": "https://api.github.com/users/PeterSR/orgs", + "repos_url": "https://api.github.com/users/PeterSR/repos", + "events_url": "https://api.github.com/users/PeterSR/events{/privacy}", + "received_events_url": "https://api.github.com/users/PeterSR/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/PeterSR/nand2tetris", + "description": "The various projects from the Nand to Tetris course", + "fork": false, + "url": "https://api.github.com/repos/PeterSR/nand2tetris", + "forks_url": "https://api.github.com/repos/PeterSR/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/PeterSR/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PeterSR/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PeterSR/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/PeterSR/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/PeterSR/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/PeterSR/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/PeterSR/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/PeterSR/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/PeterSR/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/PeterSR/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PeterSR/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PeterSR/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PeterSR/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PeterSR/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PeterSR/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/PeterSR/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/PeterSR/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/PeterSR/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/PeterSR/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/PeterSR/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PeterSR/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PeterSR/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PeterSR/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PeterSR/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/PeterSR/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PeterSR/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/PeterSR/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PeterSR/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/PeterSR/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/PeterSR/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PeterSR/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PeterSR/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PeterSR/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/PeterSR/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/PeterSR/nand2tetris/deployments", + "created_at": "2013-12-24T15:49:13Z", + "updated_at": "2013-12-24T15:51:33Z", + "pushed_at": "2013-12-24T15:51:32Z", + "git_url": "git://github.com/PeterSR/nand2tetris.git", + "ssh_url": "git@github.com:PeterSR/nand2tetris.git", + "clone_url": "https://github.com/PeterSR/nand2tetris.git", + "svn_url": "https://github.com/PeterSR/nand2tetris", + "homepage": null, + "size": 1368, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.2394085 + }, + { + "id": 16673419, + "name": "nand2tetris", + "full_name": "apeshape/nand2tetris", + "owner": { + "login": "apeshape", + "id": 467144, + "avatar_url": "https://avatars.githubusercontent.com/u/467144?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/apeshape", + "html_url": "https://github.com/apeshape", + "followers_url": "https://api.github.com/users/apeshape/followers", + "following_url": "https://api.github.com/users/apeshape/following{/other_user}", + "gists_url": "https://api.github.com/users/apeshape/gists{/gist_id}", + "starred_url": "https://api.github.com/users/apeshape/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/apeshape/subscriptions", + "organizations_url": "https://api.github.com/users/apeshape/orgs", + "repos_url": "https://api.github.com/users/apeshape/repos", + "events_url": "https://api.github.com/users/apeshape/events{/privacy}", + "received_events_url": "https://api.github.com/users/apeshape/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/apeshape/nand2tetris", + "description": "My solutions for the nand 2 tetris book", + "fork": false, + "url": "https://api.github.com/repos/apeshape/nand2tetris", + "forks_url": "https://api.github.com/repos/apeshape/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/apeshape/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/apeshape/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/apeshape/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/apeshape/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/apeshape/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/apeshape/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/apeshape/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/apeshape/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/apeshape/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/apeshape/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/apeshape/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/apeshape/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/apeshape/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/apeshape/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/apeshape/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/apeshape/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/apeshape/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/apeshape/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/apeshape/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/apeshape/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/apeshape/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/apeshape/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/apeshape/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/apeshape/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/apeshape/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/apeshape/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/apeshape/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/apeshape/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/apeshape/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/apeshape/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/apeshape/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/apeshape/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/apeshape/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/apeshape/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/apeshape/nand2tetris/deployments", + "created_at": "2014-02-09T19:20:05Z", + "updated_at": "2014-02-13T22:48:42Z", + "pushed_at": "2014-02-13T22:48:42Z", + "git_url": "git://github.com/apeshape/nand2tetris.git", + "ssh_url": "git@github.com:apeshape/nand2tetris.git", + "clone_url": "https://github.com/apeshape/nand2tetris.git", + "svn_url": "https://github.com/apeshape/nand2tetris", + "homepage": null, + "size": 184, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.2394085 + }, + { + "id": 33876679, + "name": "nand2tetris", + "full_name": "lamflam/nand2tetris", + "owner": { + "login": "lamflam", + "id": 3680882, + "avatar_url": "https://avatars.githubusercontent.com/u/3680882?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/lamflam", + "html_url": "https://github.com/lamflam", + "followers_url": "https://api.github.com/users/lamflam/followers", + "following_url": "https://api.github.com/users/lamflam/following{/other_user}", + "gists_url": "https://api.github.com/users/lamflam/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lamflam/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lamflam/subscriptions", + "organizations_url": "https://api.github.com/users/lamflam/orgs", + "repos_url": "https://api.github.com/users/lamflam/repos", + "events_url": "https://api.github.com/users/lamflam/events{/privacy}", + "received_events_url": "https://api.github.com/users/lamflam/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/lamflam/nand2tetris", + "description": "Course work for the From Nand To Tetris course", + "fork": false, + "url": "https://api.github.com/repos/lamflam/nand2tetris", + "forks_url": "https://api.github.com/repos/lamflam/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/lamflam/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/lamflam/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/lamflam/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/lamflam/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/lamflam/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/lamflam/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/lamflam/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/lamflam/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/lamflam/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/lamflam/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/lamflam/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/lamflam/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/lamflam/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/lamflam/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/lamflam/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/lamflam/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/lamflam/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/lamflam/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/lamflam/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/lamflam/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/lamflam/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/lamflam/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/lamflam/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/lamflam/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/lamflam/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/lamflam/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/lamflam/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/lamflam/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/lamflam/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/lamflam/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/lamflam/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/lamflam/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/lamflam/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/lamflam/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/lamflam/nand2tetris/deployments", + "created_at": "2015-04-13T15:27:38Z", + "updated_at": "2015-04-17T12:16:09Z", + "pushed_at": "2015-07-23T14:28:24Z", + "git_url": "git://github.com/lamflam/nand2tetris.git", + "ssh_url": "git@github.com:lamflam/nand2tetris.git", + "clone_url": "https://github.com/lamflam/nand2tetris.git", + "svn_url": "https://github.com/lamflam/nand2tetris", + "homepage": null, + "size": 680, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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": "develop", + "score": 4.2394085 + }, + { + "id": 42212525, + "name": "Tetris-Game", + "full_name": "alifia2306/Tetris-Game", + "owner": { + "login": "alifia2306", + "id": 10080145, + "avatar_url": "https://avatars.githubusercontent.com/u/10080145?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/alifia2306", + "html_url": "https://github.com/alifia2306", + "followers_url": "https://api.github.com/users/alifia2306/followers", + "following_url": "https://api.github.com/users/alifia2306/following{/other_user}", + "gists_url": "https://api.github.com/users/alifia2306/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alifia2306/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alifia2306/subscriptions", + "organizations_url": "https://api.github.com/users/alifia2306/orgs", + "repos_url": "https://api.github.com/users/alifia2306/repos", + "events_url": "https://api.github.com/users/alifia2306/events{/privacy}", + "received_events_url": "https://api.github.com/users/alifia2306/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alifia2306/Tetris-Game", + "description": "Implemented Device drivers for Video, timers and keyboard using Traps and writing Wrappers for them in LC4 Toy Assembly Language. Used these wrappers to implement a Tetris.", + "fork": false, + "url": "https://api.github.com/repos/alifia2306/Tetris-Game", + "forks_url": "https://api.github.com/repos/alifia2306/Tetris-Game/forks", + "keys_url": "https://api.github.com/repos/alifia2306/Tetris-Game/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alifia2306/Tetris-Game/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alifia2306/Tetris-Game/teams", + "hooks_url": "https://api.github.com/repos/alifia2306/Tetris-Game/hooks", + "issue_events_url": "https://api.github.com/repos/alifia2306/Tetris-Game/issues/events{/number}", + "events_url": "https://api.github.com/repos/alifia2306/Tetris-Game/events", + "assignees_url": "https://api.github.com/repos/alifia2306/Tetris-Game/assignees{/user}", + "branches_url": "https://api.github.com/repos/alifia2306/Tetris-Game/branches{/branch}", + "tags_url": "https://api.github.com/repos/alifia2306/Tetris-Game/tags", + "blobs_url": "https://api.github.com/repos/alifia2306/Tetris-Game/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alifia2306/Tetris-Game/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alifia2306/Tetris-Game/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alifia2306/Tetris-Game/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alifia2306/Tetris-Game/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alifia2306/Tetris-Game/languages", + "stargazers_url": "https://api.github.com/repos/alifia2306/Tetris-Game/stargazers", + "contributors_url": "https://api.github.com/repos/alifia2306/Tetris-Game/contributors", + "subscribers_url": "https://api.github.com/repos/alifia2306/Tetris-Game/subscribers", + "subscription_url": "https://api.github.com/repos/alifia2306/Tetris-Game/subscription", + "commits_url": "https://api.github.com/repos/alifia2306/Tetris-Game/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alifia2306/Tetris-Game/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alifia2306/Tetris-Game/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alifia2306/Tetris-Game/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/alifia2306/Tetris-Game/contents/{+path}", + "compare_url": "https://api.github.com/repos/alifia2306/Tetris-Game/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alifia2306/Tetris-Game/merges", + "archive_url": "https://api.github.com/repos/alifia2306/Tetris-Game/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alifia2306/Tetris-Game/downloads", + "issues_url": "https://api.github.com/repos/alifia2306/Tetris-Game/issues{/number}", + "pulls_url": "https://api.github.com/repos/alifia2306/Tetris-Game/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alifia2306/Tetris-Game/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alifia2306/Tetris-Game/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alifia2306/Tetris-Game/labels{/name}", + "releases_url": "https://api.github.com/repos/alifia2306/Tetris-Game/releases{/id}", + "deployments_url": "https://api.github.com/repos/alifia2306/Tetris-Game/deployments", + "created_at": "2015-09-10T00:40:42Z", + "updated_at": "2015-09-10T00:59:43Z", + "pushed_at": "2015-09-10T00:40:44Z", + "git_url": "git://github.com/alifia2306/Tetris-Game.git", + "ssh_url": "git@github.com:alifia2306/Tetris-Game.git", + "clone_url": "https://github.com/alifia2306/Tetris-Game.git", + "svn_url": "https://github.com/alifia2306/Tetris-Game", + "homepage": "", + "size": 112, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.0354867 + }, + { + "id": 57215654, + "name": "nand_tetris", + "full_name": "pcorliss/nand_tetris", + "owner": { + "login": "pcorliss", + "id": 141914, + "avatar_url": "https://avatars.githubusercontent.com/u/141914?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/pcorliss", + "html_url": "https://github.com/pcorliss", + "followers_url": "https://api.github.com/users/pcorliss/followers", + "following_url": "https://api.github.com/users/pcorliss/following{/other_user}", + "gists_url": "https://api.github.com/users/pcorliss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pcorliss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pcorliss/subscriptions", + "organizations_url": "https://api.github.com/users/pcorliss/orgs", + "repos_url": "https://api.github.com/users/pcorliss/repos", + "events_url": "https://api.github.com/users/pcorliss/events{/privacy}", + "received_events_url": "https://api.github.com/users/pcorliss/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/pcorliss/nand_tetris", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/pcorliss/nand_tetris", + "forks_url": "https://api.github.com/repos/pcorliss/nand_tetris/forks", + "keys_url": "https://api.github.com/repos/pcorliss/nand_tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/pcorliss/nand_tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/pcorliss/nand_tetris/teams", + "hooks_url": "https://api.github.com/repos/pcorliss/nand_tetris/hooks", + "issue_events_url": "https://api.github.com/repos/pcorliss/nand_tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/pcorliss/nand_tetris/events", + "assignees_url": "https://api.github.com/repos/pcorliss/nand_tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/pcorliss/nand_tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/pcorliss/nand_tetris/tags", + "blobs_url": "https://api.github.com/repos/pcorliss/nand_tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/pcorliss/nand_tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/pcorliss/nand_tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/pcorliss/nand_tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/pcorliss/nand_tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/pcorliss/nand_tetris/languages", + "stargazers_url": "https://api.github.com/repos/pcorliss/nand_tetris/stargazers", + "contributors_url": "https://api.github.com/repos/pcorliss/nand_tetris/contributors", + "subscribers_url": "https://api.github.com/repos/pcorliss/nand_tetris/subscribers", + "subscription_url": "https://api.github.com/repos/pcorliss/nand_tetris/subscription", + "commits_url": "https://api.github.com/repos/pcorliss/nand_tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/pcorliss/nand_tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/pcorliss/nand_tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/pcorliss/nand_tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/pcorliss/nand_tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/pcorliss/nand_tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/pcorliss/nand_tetris/merges", + "archive_url": "https://api.github.com/repos/pcorliss/nand_tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/pcorliss/nand_tetris/downloads", + "issues_url": "https://api.github.com/repos/pcorliss/nand_tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/pcorliss/nand_tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/pcorliss/nand_tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/pcorliss/nand_tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/pcorliss/nand_tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/pcorliss/nand_tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/pcorliss/nand_tetris/deployments", + "created_at": "2016-04-27T13:30:52Z", + "updated_at": "2016-04-27T13:31:52Z", + "pushed_at": "2016-04-27T13:31:48Z", + "git_url": "git://github.com/pcorliss/nand_tetris.git", + "ssh_url": "git@github.com:pcorliss/nand_tetris.git", + "clone_url": "https://github.com/pcorliss/nand_tetris.git", + "svn_url": "https://github.com/pcorliss/nand_tetris", + "homepage": null, + "size": 173, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.0354867 + }, + { + "id": 61306821, + "name": "Tetris-AOC", + "full_name": "lucasbretana/Tetris-AOC", + "owner": { + "login": "lucasbretana", + "id": 7704537, + "avatar_url": "https://avatars.githubusercontent.com/u/7704537?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/lucasbretana", + "html_url": "https://github.com/lucasbretana", + "followers_url": "https://api.github.com/users/lucasbretana/followers", + "following_url": "https://api.github.com/users/lucasbretana/following{/other_user}", + "gists_url": "https://api.github.com/users/lucasbretana/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lucasbretana/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lucasbretana/subscriptions", + "organizations_url": "https://api.github.com/users/lucasbretana/orgs", + "repos_url": "https://api.github.com/users/lucasbretana/repos", + "events_url": "https://api.github.com/users/lucasbretana/events{/privacy}", + "received_events_url": "https://api.github.com/users/lucasbretana/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/lucasbretana/Tetris-AOC", + "description": "It's the game tetris created using the MARS, MIPS Simulator, assembly languge. ", + "fork": false, + "url": "https://api.github.com/repos/lucasbretana/Tetris-AOC", + "forks_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/forks", + "keys_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/teams", + "hooks_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/hooks", + "issue_events_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/issues/events{/number}", + "events_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/events", + "assignees_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/assignees{/user}", + "branches_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/branches{/branch}", + "tags_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/tags", + "blobs_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/statuses/{sha}", + "languages_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/languages", + "stargazers_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/stargazers", + "contributors_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/contributors", + "subscribers_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/subscribers", + "subscription_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/subscription", + "commits_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/contents/{+path}", + "compare_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/merges", + "archive_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/downloads", + "issues_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/issues{/number}", + "pulls_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/pulls{/number}", + "milestones_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/milestones{/number}", + "notifications_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/labels{/name}", + "releases_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/releases{/id}", + "deployments_url": "https://api.github.com/repos/lucasbretana/Tetris-AOC/deployments", + "created_at": "2016-06-16T15:53:31Z", + "updated_at": "2016-06-17T01:40:38Z", + "pushed_at": "2016-06-22T00:35:07Z", + "git_url": "git://github.com/lucasbretana/Tetris-AOC.git", + "ssh_url": "git@github.com:lucasbretana/Tetris-AOC.git", + "clone_url": "https://github.com/lucasbretana/Tetris-AOC.git", + "svn_url": "https://github.com/lucasbretana/Tetris-AOC", + "homepage": null, + "size": 69, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.0354867 + }, + { + "id": 16295007, + "name": "VGA_Tetris", + "full_name": "JaCzekanski/VGA_Tetris", + "owner": { + "login": "JaCzekanski", + "id": 3662990, + "avatar_url": "https://avatars.githubusercontent.com/u/3662990?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/JaCzekanski", + "html_url": "https://github.com/JaCzekanski", + "followers_url": "https://api.github.com/users/JaCzekanski/followers", + "following_url": "https://api.github.com/users/JaCzekanski/following{/other_user}", + "gists_url": "https://api.github.com/users/JaCzekanski/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JaCzekanski/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JaCzekanski/subscriptions", + "organizations_url": "https://api.github.com/users/JaCzekanski/orgs", + "repos_url": "https://api.github.com/users/JaCzekanski/repos", + "events_url": "https://api.github.com/users/JaCzekanski/events{/privacy}", + "received_events_url": "https://api.github.com/users/JaCzekanski/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/JaCzekanski/VGA_Tetris", + "description": "assembly, atmega8, software vga", + "fork": false, + "url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris", + "forks_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/forks", + "keys_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/teams", + "hooks_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/hooks", + "issue_events_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/events", + "assignees_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/tags", + "blobs_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/languages", + "stargazers_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/stargazers", + "contributors_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/contributors", + "subscribers_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/subscribers", + "subscription_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/subscription", + "commits_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/merges", + "archive_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/downloads", + "issues_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/JaCzekanski/VGA_Tetris/deployments", + "created_at": "2014-01-27T22:23:04Z", + "updated_at": "2014-01-27T22:42:48Z", + "pushed_at": "2014-01-27T22:42:47Z", + "git_url": "git://github.com/JaCzekanski/VGA_Tetris.git", + "ssh_url": "git@github.com:JaCzekanski/VGA_Tetris.git", + "clone_url": "https://github.com/JaCzekanski/VGA_Tetris.git", + "svn_url": "https://github.com/JaCzekanski/VGA_Tetris", + "homepage": "", + "size": 3872, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 4.0160136 + }, + { + "id": 40766592, + "name": "nand2tetris", + "full_name": "Fuffi/nand2tetris", + "owner": { + "login": "Fuffi", + "id": 1379179, + "avatar_url": "https://avatars.githubusercontent.com/u/1379179?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/Fuffi", + "html_url": "https://github.com/Fuffi", + "followers_url": "https://api.github.com/users/Fuffi/followers", + "following_url": "https://api.github.com/users/Fuffi/following{/other_user}", + "gists_url": "https://api.github.com/users/Fuffi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Fuffi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Fuffi/subscriptions", + "organizations_url": "https://api.github.com/users/Fuffi/orgs", + "repos_url": "https://api.github.com/users/Fuffi/repos", + "events_url": "https://api.github.com/users/Fuffi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Fuffi/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/Fuffi/nand2tetris", + "description": "Building a working computer, with OS and a Tetris game, starting from NAND gates", + "fork": false, + "url": "https://api.github.com/repos/Fuffi/nand2tetris", + "forks_url": "https://api.github.com/repos/Fuffi/nand2tetris/forks", + "keys_url": "https://api.github.com/repos/Fuffi/nand2tetris/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Fuffi/nand2tetris/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Fuffi/nand2tetris/teams", + "hooks_url": "https://api.github.com/repos/Fuffi/nand2tetris/hooks", + "issue_events_url": "https://api.github.com/repos/Fuffi/nand2tetris/issues/events{/number}", + "events_url": "https://api.github.com/repos/Fuffi/nand2tetris/events", + "assignees_url": "https://api.github.com/repos/Fuffi/nand2tetris/assignees{/user}", + "branches_url": "https://api.github.com/repos/Fuffi/nand2tetris/branches{/branch}", + "tags_url": "https://api.github.com/repos/Fuffi/nand2tetris/tags", + "blobs_url": "https://api.github.com/repos/Fuffi/nand2tetris/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Fuffi/nand2tetris/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Fuffi/nand2tetris/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Fuffi/nand2tetris/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Fuffi/nand2tetris/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Fuffi/nand2tetris/languages", + "stargazers_url": "https://api.github.com/repos/Fuffi/nand2tetris/stargazers", + "contributors_url": "https://api.github.com/repos/Fuffi/nand2tetris/contributors", + "subscribers_url": "https://api.github.com/repos/Fuffi/nand2tetris/subscribers", + "subscription_url": "https://api.github.com/repos/Fuffi/nand2tetris/subscription", + "commits_url": "https://api.github.com/repos/Fuffi/nand2tetris/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Fuffi/nand2tetris/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Fuffi/nand2tetris/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Fuffi/nand2tetris/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Fuffi/nand2tetris/contents/{+path}", + "compare_url": "https://api.github.com/repos/Fuffi/nand2tetris/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Fuffi/nand2tetris/merges", + "archive_url": "https://api.github.com/repos/Fuffi/nand2tetris/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Fuffi/nand2tetris/downloads", + "issues_url": "https://api.github.com/repos/Fuffi/nand2tetris/issues{/number}", + "pulls_url": "https://api.github.com/repos/Fuffi/nand2tetris/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Fuffi/nand2tetris/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Fuffi/nand2tetris/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Fuffi/nand2tetris/labels{/name}", + "releases_url": "https://api.github.com/repos/Fuffi/nand2tetris/releases{/id}", + "deployments_url": "https://api.github.com/repos/Fuffi/nand2tetris/deployments", + "created_at": "2015-08-15T15:11:20Z", + "updated_at": "2015-08-19T23:22:45Z", + "pushed_at": "2015-08-29T09:14:58Z", + "git_url": "git://github.com/Fuffi/nand2tetris.git", + "ssh_url": "git@github.com:Fuffi/nand2tetris.git", + "clone_url": "https://github.com/Fuffi/nand2tetris.git", + "svn_url": "https://github.com/Fuffi/nand2tetris", + "homepage": "", + "size": 368, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Assembly", + "has_issues": true, + "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", + "score": 3.4189136 + } + ] + }, + "rawHeaders": { + "server": "GitHub.com", + "date": "Wed, 22 Jun 2016 02:15:11 GMT", + "content-type": "application/json; charset=utf-8", + "content-length": "483500", + "connection": "close", + "status": "200 OK", + "x-ratelimit-limit": "30", + "x-ratelimit-remaining": "29", + "x-ratelimit-reset": "1466561771", + "cache-control": "no-cache", + "x-github-media-type": "github.v3; format=json", + "link": "; rel=\"next\", ; rel=\"last\"", + "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": "*", + "content-security-policy": "default-src 'none'", + "strict-transport-security": "max-age=31536000; includeSubdomains; preload", + "x-content-type-options": "nosniff", + "x-frame-options": "deny", + "x-xss-protection": "1; mode=block", + "vary": "Accept-Encoding", + "x-served-by": "593010132f82159af0ded24b4932e109", + "x-github-request-id": "AE1408AB:5527:92C4DD2:5769F4AE" + } + }, { "scope": "https://api.github.com:443", "method": "GET", @@ -8911,7 +17848,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:11 GMT", "content-type": "application/json; charset=utf-8", @@ -8939,7 +17876,7 @@ { "scope": "https://api.github.com:443", "method": "GET", - "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=2&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100", + "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=2&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100&page=2", "body": "", "status": 200, "response": { @@ -17848,7 +26785,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:14 GMT", "content-type": "application/json; charset=utf-8", @@ -17876,7 +26813,7 @@ { "scope": "https://api.github.com:443", "method": "GET", - "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=3&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100", + "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=3&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100&page=3", "body": "", "status": 200, "response": { @@ -26785,7 +35722,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:17 GMT", "content-type": "application/json; charset=utf-8", @@ -26813,7 +35750,7 @@ { "scope": "https://api.github.com:443", "method": "GET", - "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=4&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100", + "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=4&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100&page=4", "body": "", "status": 200, "response": { @@ -35722,7 +44659,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:20 GMT", "content-type": "application/json; charset=utf-8", @@ -35750,7 +44687,7 @@ { "scope": "https://api.github.com:443", "method": "GET", - "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=5&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100", + "path": "/search/repositories?q=tetris+language%3Aassembly&sort=stars&order=desc&type=all&per_page=100&page=5&q=tetris+language:assembly&sort=stars&order=desc&type=all&per_page=100&page=5", "body": "", "status": 200, "response": { @@ -42256,7 +51193,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:22 GMT", "content-type": "application/json; charset=utf-8", @@ -42885,7 +51822,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:23 GMT", "content-type": "application/json; charset=utf-8", @@ -48918,7 +57855,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:24 GMT", "content-type": "application/json; charset=utf-8", @@ -48946,7 +57883,7 @@ { "scope": "https://api.github.com:443", "method": "GET", - "path": "/search/issues?q=windows+pip+label%3Abug+language%3Apython+state%3Aopen+&sort=created&order=asc&type=all&per_page=100&page=2&q=windows+pip+label:bug+language:python+state:open+&sort=created&order=asc&type=all&per_page=100", + "path": "/search/issues?q=windows+pip+label%3Abug+language%3Apython+state%3Aopen+&sort=created&order=asc&type=all&per_page=100&page=2&q=windows+pip+label:bug+language:python+state:open+&sort=created&order=asc&type=all&per_page=100&page=2", "body": "", "status": 200, "response": { @@ -53447,7 +62384,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:26 GMT", "content-type": "application/json; charset=utf-8", @@ -53564,7 +62501,7 @@ } ] }, - "headers": { + "rawHeaders": { "server": "GitHub.com", "date": "Wed, 22 Jun 2016 02:15:27 GMT", "content-type": "application/json; charset=utf-8", @@ -53588,4 +62525,4 @@ "x-github-request-id": "AE1408AB:F650:7A5C16E:5769F4BF" } } -] \ No newline at end of file +] diff --git a/test/search.spec.js b/test/search.spec.js index 11614e4e..397fc707 100644 --- a/test/search.spec.js +++ b/test/search.spec.js @@ -28,7 +28,22 @@ describe('Search', function() { return search.forRepositories(options) .then(function({data}) { expect(data).to.be.an.array(); - expect(data.length).to.be.above(0); + expect(data.length).to.be.above(100); + }); + }); + + it('should not paginate when provided an optional page parameter', function() { + let options = {page: 1}; + let search = github.search({ + q: 'tetris language:assembly', + sort: 'stars', + order: 'desc', + }); + + return search.forRepositories(options) + .then(function({data}) { + expect(data).to.be.an.array(); + expect(data.length).to.equal(100); }); });