Skip to content

Instantly share code, notes, and snippets.

/sortbench.pl Secret

Created March 28, 2016 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/fca9dd4d0f766b6d653d to your computer and use it in GitHub Desktop.
Save anonymous/fca9dd4d0f766b6d653d to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use Mojo::JSON qw/decode_json encode_json/;
use Mojo::Util qw/monkey_patch/;
use Benchmark qw/timethis/;
my $json = join '', <DATA>;
our $structure = decode_json($json);
our $rv;
timethis(-10, sub { $main::rv = encode_json($main::structure) });
monkey_patch 'Mojo::JSON', '_encode_object', sub {
my $object = shift;
my @pairs = map {
Mojo::JSON::_encode_string($_) . ':'
. Mojo::JSON::_encode_value($object->{$_})
} sort keys %$object;
return '{' . join(',', @pairs) . '}';
};
timethis(-10, sub { $main::rv = encode_json($main::structure) });
__DATA__
{
"total_count": 109,
"incomplete_results": false,
"items": [
{
"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=2",
"gravatar_id": null,
"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}",
"created_at": "2014-06-22T14:23:25Z",
"updated_at": "2014-07-18T16:38:35Z",
"pushed_at": "2014-07-12T22:13:16Z",
"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": 11373,
"stargazers_count": 28,
"watchers_count": 28,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 5,
"mirror_url": null,
"open_issues_count": 0,
"forks": 5,
"open_issues": 0,
"watchers": 28,
"default_branch": "master",
"score": 19.820848
},
{
"id": 4731946,
"name": "tetris-464",
"full_name": "cjauvin/tetris-464",
"owner": {
"login": "cjauvin",
"id": 488992,
"avatar_url": "https://avatars.githubusercontent.com/u/488992?v=2",
"gravatar_id": "58ce85efba210120fb040e34cc445103",
"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 C64 (no points, no levels, no nothing, except the bare block falling, controlling and colliding mechanism), in 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}",
"created_at": "2012-06-20T21:55:01Z",
"updated_at": "2014-06-02T05:52:48Z",
"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": 8,
"watchers_count": 8,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 8,
"default_branch": "master",
"score": 9.910424
},
{
"id": 12466077,
"name": "tetranglix",
"full_name": "Shikhin/tetranglix",
"owner": {
"login": "Shikhin",
"id": 617680,
"avatar_url": "https://avatars.githubusercontent.com/u/617680?v=2",
"gravatar_id": "aa8b02ca9d1be7300ce75985d30864ae",
"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": "Yet another 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}",
"created_at": "2013-08-29T17:03:07Z",
"updated_at": "2014-05-26T19:16:01Z",
"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": 7,
"watchers_count": 7,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 7,
"default_branch": "master",
"score": 8.402477
},
{
"id": 8688362,
"name": "Nand2Tetris",
"full_name": "havivha/Nand2Tetris",
"owner": {
"login": "havivha",
"id": 2629901,
"avatar_url": "https://avatars.githubusercontent.com/u/2629901?v=2",
"gravatar_id": "0da4f0144005e3fe28f36ec6df8f335d",
"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}",
"created_at": "2013-03-10T17:04:20Z",
"updated_at": "2014-06-29T08:52:43Z",
"pushed_at": "2012-12-16T21:45:22Z",
"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": 350,
"stargazers_count": 6,
"watchers_count": 6,
"language": "Assembly",
"has_issues": false,
"has_downloads": true,
"has_wiki": true,
"forks_count": 5,
"mirror_url": null,
"open_issues_count": 0,
"forks": 5,
"open_issues": 0,
"watchers": 6,
"default_branch": "master",
"score": 13.735105
},
{
"id": 15853035,
"name": "nand2tetris",
"full_name": "SeaRbSg/nand2tetris",
"owner": {
"login": "SeaRbSg",
"id": 5482773,
"avatar_url": "https://avatars.githubusercontent.com/u/5482773?v=2",
"gravatar_id": null,
"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}",
"created_at": "2014-01-12T23:13:08Z",
"updated_at": "2014-05-11T14:43:13Z",
"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": 4,
"watchers_count": 4,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 4,
"default_branch": "master",
"score": 6.937297
},
{
"id": 3924601,
"name": "mips-tetris",
"full_name": "johngunderman/mips-tetris",
"owner": {
"login": "johngunderman",
"id": 66752,
"avatar_url": "https://avatars.githubusercontent.com/u/66752?v=2",
"gravatar_id": "b2887803258bc958e1219f7eb3fbd810",
"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}",
"created_at": "2012-04-04T01:43:31Z",
"updated_at": "2013-10-11T03:43:38Z",
"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": 2,
"watchers_count": 2,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 2,
"mirror_url": null,
"open_issues_count": 0,
"forks": 2,
"open_issues": 0,
"watchers": 2,
"default_branch": "master",
"score": 11.763468
},
{
"id": 3081286,
"name": "Tetris",
"full_name": "dtrupenn/Tetris",
"owner": {
"login": "dtrupenn",
"id": 872147,
"avatar_url": "https://avatars.githubusercontent.com/u/872147?v=2",
"gravatar_id": "e7956084e75f239de85d3a31bc172ace",
"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}",
"created_at": "2012-01-01T00:31:50Z",
"updated_at": "2013-10-04T20:06:59Z",
"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": 1,
"watchers_count": 1,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"score": 7.9283395
},
{
"id": 8496749,
"name": "bootris",
"full_name": "dbittman/bootris",
"owner": {
"login": "dbittman",
"id": 3292300,
"avatar_url": "https://avatars.githubusercontent.com/u/3292300?v=2",
"gravatar_id": "cc06765ab0cedf0f526c48d31c87becf",
"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}",
"created_at": "2013-03-01T07:46:44Z",
"updated_at": "2013-10-06T09:45:05Z",
"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": 1,
"watchers_count": 1,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"score": 6.721982
},
{
"id": 15288509,
"name": "nand2tetris",
"full_name": "prec/nand2tetris",
"owner": {
"login": "prec",
"id": 2953301,
"avatar_url": "https://avatars.githubusercontent.com/u/2953301?v=2",
"gravatar_id": "ef34f7bbbcfccd6642eb4b64edad82d0",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"score": 3.9641697
},
{
"id": 13047218,
"name": "nand2tetris",
"full_name": "davidbrenner/nand2tetris",
"owner": {
"login": "davidbrenner",
"id": 236870,
"avatar_url": "https://avatars.githubusercontent.com/u/236870?v=2",
"gravatar_id": "49f4951810aaae21bb8df93dc452e844",
"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}",
"created_at": "2013-09-23T21:07:41Z",
"updated_at": "2013-09-29T04:50:52Z",
"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": 1,
"watchers_count": 1,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"score": 3.9641697
},
{
"id": 10392131,
"name": "nand2tetris",
"full_name": "mattkgross/nand2tetris",
"owner": {
"login": "mattkgross",
"id": 3393610,
"avatar_url": "https://avatars.githubusercontent.com/u/3393610?v=2",
"gravatar_id": "f895ee9500fa40f2bd8cd9cbc08be07f",
"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}",
"created_at": "2013-05-30T21:12:42Z",
"updated_at": "2013-10-13T19:36:44Z",
"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": 1,
"watchers_count": 1,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"score": 3.9641697
},
{
"id": 10572344,
"name": "nand2tetris",
"full_name": "PuerkitoBio/nand2tetris",
"owner": {
"login": "PuerkitoBio",
"id": 692384,
"avatar_url": "https://avatars.githubusercontent.com/u/692384?v=2",
"gravatar_id": "a4f76db0db9af30e556b8576946c9872",
"url": "https://api.github.com/users/PuerkitoBio",
"html_url": "https://github.com/PuerkitoBio",
"followers_url": "https://api.github.com/users/PuerkitoBio/followers",
"following_url": "https://api.github.com/users/PuerkitoBio/following{/other_user}",
"gists_url": "https://api.github.com/users/PuerkitoBio/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PuerkitoBio/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PuerkitoBio/subscriptions",
"organizations_url": "https://api.github.com/users/PuerkitoBio/orgs",
"repos_url": "https://api.github.com/users/PuerkitoBio/repos",
"events_url": "https://api.github.com/users/PuerkitoBio/events{/privacy}",
"received_events_url": "https://api.github.com/users/PuerkitoBio/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/PuerkitoBio/nand2tetris",
"description": "Following along with the book The Elements of Computing Systems (aka NAND2Tetris)",
"fork": false,
"url": "https://api.github.com/repos/PuerkitoBio/nand2tetris",
"forks_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/forks",
"keys_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/teams",
"hooks_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/hooks",
"issue_events_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/issues/events{/number}",
"events_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/events",
"assignees_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/assignees{/user}",
"branches_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/branches{/branch}",
"tags_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/tags",
"blobs_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/statuses/{sha}",
"languages_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/languages",
"stargazers_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/stargazers",
"contributors_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/contributors",
"subscribers_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/subscribers",
"subscription_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/subscription",
"commits_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/contents/{+path}",
"compare_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/merges",
"archive_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/downloads",
"issues_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/issues{/number}",
"pulls_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/pulls{/number}",
"milestones_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/milestones{/number}",
"notifications_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/labels{/name}",
"releases_url": "https://api.github.com/repos/PuerkitoBio/nand2tetris/releases{/id}",
"created_at": "2013-06-08T18:13:42Z",
"updated_at": "2013-10-20T02:17:48Z",
"pushed_at": "2013-06-12T23:28:42Z",
"git_url": "git://github.com/PuerkitoBio/nand2tetris.git",
"ssh_url": "git@github.com:PuerkitoBio/nand2tetris.git",
"clone_url": "https://github.com/PuerkitoBio/nand2tetris.git",
"svn_url": "https://github.com/PuerkitoBio/nand2tetris",
"homepage": null,
"size": 792,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 1,
"mirror_url": null,
"open_issues_count": 0,
"forks": 1,
"open_issues": 0,
"watchers": 1,
"default_branch": "master",
"score": 3.9641697
},
{
"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=2",
"gravatar_id": "04102822c19297b94538a97d3c4ee4a7",
"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}",
"created_at": "2013-11-20T11:34:34Z",
"updated_at": "2013-12-05T17:07:53Z",
"pushed_at": "2013-12-05T17:07:00Z",
"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": 4044,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 13.443964
},
{
"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=2",
"gravatar_id": "6c5abb81312f0262ce42db1b5adb9cd9",
"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}",
"created_at": "2012-12-05T21:38:17Z",
"updated_at": "2014-03-15T02:02:18Z",
"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": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": false,
"has_downloads": true,
"has_wiki": true,
"forks_count": 5,
"mirror_url": null,
"open_issues_count": 0,
"forks": 5,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 9.910424
},
{
"id": 18544226,
"name": "nand2tetris_projects",
"full_name": "xmunoz/nand2tetris_projects",
"owner": {
"login": "xmunoz",
"id": 1065196,
"avatar_url": "https://avatars.githubusercontent.com/u/1065196?v=2",
"gravatar_id": "552c06e5010fc307113b99da7b55c050",
"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}",
"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,
"forks_count": 2,
"mirror_url": null,
"open_issues_count": 0,
"forks": 2,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 8.369266
},
{
"id": 8762442,
"name": "TrashCompactor",
"full_name": "SpyhopSpring2013/TrashCompactor",
"owner": {
"login": "SpyhopSpring2013",
"id": 3858400,
"avatar_url": "https://avatars.githubusercontent.com/u/3858400?v=2",
"gravatar_id": null,
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 6.721982
},
{
"id": 9820994,
"name": "tetris-assembly",
"full_name": "caioflores/tetris-assembly",
"owner": {
"login": "caioflores",
"id": 4183877,
"avatar_url": "https://avatars.githubusercontent.com/u/4183877?v=2",
"gravatar_id": "6effb5fcb44b52503a2b4fd53a446130",
"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}",
"created_at": "2013-05-02T19:30:29Z",
"updated_at": "2013-11-02T03:40:11Z",
"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": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 1,
"mirror_url": null,
"open_issues_count": 0,
"forks": 1,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 6.721982
},
{
"id": 18079172,
"name": "Assembly-Tetris",
"full_name": "Ethanb00/Assembly-Tetris",
"owner": {
"login": "Ethanb00",
"id": 5893479,
"avatar_url": "https://avatars.githubusercontent.com/u/5893479?v=2",
"gravatar_id": "211032ef5e333dd9ac379582fed01467",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 6.721982
},
{
"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=2",
"gravatar_id": "d1b13e910f0c2095dab417a63b9b76ac",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 6.6954126
},
{
"id": 20640207,
"name": "Nand2Tetris-Assembler",
"full_name": "JRD8/Nand2Tetris-Assembler",
"owner": {
"login": "JRD8",
"id": 4774517,
"avatar_url": "https://avatars.githubusercontent.com/u/4774517?v=2",
"gravatar_id": "034a520fb10fddb0abcc84c567e3aed6",
"url": "https://api.github.com/users/JRD8",
"html_url": "https://github.com/JRD8",
"followers_url": "https://api.github.com/users/JRD8/followers",
"following_url": "https://api.github.com/users/JRD8/following{/other_user}",
"gists_url": "https://api.github.com/users/JRD8/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JRD8/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JRD8/subscriptions",
"organizations_url": "https://api.github.com/users/JRD8/orgs",
"repos_url": "https://api.github.com/users/JRD8/repos",
"events_url": "https://api.github.com/users/JRD8/events{/privacy}",
"received_events_url": "https://api.github.com/users/JRD8/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/JRD8/Nand2Tetris-Assembler",
"description": "Project 6 - Assembler for Nand 2 Tetris ",
"fork": false,
"url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler",
"forks_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/forks",
"keys_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/teams",
"hooks_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/hooks",
"issue_events_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/issues/events{/number}",
"events_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/events",
"assignees_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/assignees{/user}",
"branches_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/branches{/branch}",
"tags_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/tags",
"blobs_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/statuses/{sha}",
"languages_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/languages",
"stargazers_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/stargazers",
"contributors_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/contributors",
"subscribers_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/subscribers",
"subscription_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/subscription",
"commits_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/contents/{+path}",
"compare_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/merges",
"archive_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/downloads",
"issues_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/issues{/number}",
"pulls_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/pulls{/number}",
"milestones_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/milestones{/number}",
"notifications_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/labels{/name}",
"releases_url": "https://api.github.com/repos/JRD8/Nand2Tetris-Assembler/releases{/id}",
"created_at": "2014-06-09T08:55:28Z",
"updated_at": "2014-06-15T00:03:15Z",
"pushed_at": "2014-07-07T03:55:21Z",
"git_url": "git://github.com/JRD8/Nand2Tetris-Assembler.git",
"ssh_url": "git@github.com:JRD8/Nand2Tetris-Assembler.git",
"clone_url": "https://github.com/JRD8/Nand2Tetris-Assembler.git",
"svn_url": "https://github.com/JRD8/Nand2Tetris-Assembler",
"homepage": "",
"size": 284,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 5.0414867
},
{
"id": 16295007,
"name": "VGA_Tetris",
"full_name": "JaCzekanski/VGA_Tetris",
"owner": {
"login": "JaCzekanski",
"id": 3662990,
"avatar_url": "https://avatars.githubusercontent.com/u/3662990?v=2",
"gravatar_id": "bd19dab6a2e72563c650c651a668c9f7",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 4.955212
},
{
"id": 7912192,
"name": "TetrisASM",
"full_name": "BuzzVII/TetrisASM",
"owner": {
"login": "BuzzVII",
"id": 3426214,
"avatar_url": "https://avatars.githubusercontent.com/u/3426214?v=2",
"gravatar_id": "1fa858d937a7db81087e997f00a9a710",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 4.9053946
},
{
"id": 8799619,
"name": "Nand2Tetris",
"full_name": "timlhenderson/Nand2Tetris",
"owner": {
"login": "timlhenderson",
"id": 3543717,
"avatar_url": "https://avatars.githubusercontent.com/u/3543717?v=2",
"gravatar_id": "7dd64c168fa444cf4f94f77eca8cc73e",
"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}",
"created_at": "2013-03-15T13:21:12Z",
"updated_at": "2014-02-06T06:38:30Z",
"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": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": false,
"has_downloads": true,
"has_wiki": true,
"forks_count": 1,
"mirror_url": null,
"open_issues_count": 0,
"forks": 1,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 4.2012386
},
{
"id": 15421107,
"name": "nand2tetris",
"full_name": "PeterSR/nand2tetris",
"owner": {
"login": "PeterSR",
"id": 222286,
"avatar_url": "https://avatars.githubusercontent.com/u/222286?v=2",
"gravatar_id": "953fa0c3f10711df21ed4fd0327c3ce7",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 4.2012386
},
{
"id": 8995905,
"name": "nand-to-tetris",
"full_name": "dstcruz/nand-to-tetris",
"owner": {
"login": "dstcruz",
"id": 388594,
"avatar_url": "https://avatars.githubusercontent.com/u/388594?v=2",
"gravatar_id": "1d7612656bff189435e631cea343b246",
"url": "https://api.github.com/users/dstcruz",
"html_url": "https://github.com/dstcruz",
"followers_url": "https://api.github.com/users/dstcruz/followers",
"following_url": "https://api.github.com/users/dstcruz/following{/other_user}",
"gists_url": "https://api.github.com/users/dstcruz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dstcruz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dstcruz/subscriptions",
"organizations_url": "https://api.github.com/users/dstcruz/orgs",
"repos_url": "https://api.github.com/users/dstcruz/repos",
"events_url": "https://api.github.com/users/dstcruz/events{/privacy}",
"received_events_url": "https://api.github.com/users/dstcruz/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/dstcruz/nand-to-tetris",
"description": "My solutions to the \"from NAND to Tetris\" project",
"fork": false,
"url": "https://api.github.com/repos/dstcruz/nand-to-tetris",
"forks_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/forks",
"keys_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/teams",
"hooks_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/hooks",
"issue_events_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/issues/events{/number}",
"events_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/events",
"assignees_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/assignees{/user}",
"branches_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/branches{/branch}",
"tags_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/tags",
"blobs_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/statuses/{sha}",
"languages_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/languages",
"stargazers_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/stargazers",
"contributors_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/contributors",
"subscribers_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/subscribers",
"subscription_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/subscription",
"commits_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/contents/{+path}",
"compare_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/merges",
"archive_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/downloads",
"issues_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/issues{/number}",
"pulls_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/pulls{/number}",
"milestones_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/milestones{/number}",
"notifications_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/labels{/name}",
"releases_url": "https://api.github.com/repos/dstcruz/nand-to-tetris/releases{/id}",
"created_at": "2013-03-25T00:43:34Z",
"updated_at": "2013-11-28T19:18:38Z",
"pushed_at": "2013-05-22T03:28:57Z",
"git_url": "git://github.com/dstcruz/nand-to-tetris.git",
"ssh_url": "git@github.com:dstcruz/nand-to-tetris.git",
"clone_url": "https://github.com/dstcruz/nand-to-tetris.git",
"svn_url": "https://github.com/dstcruz/nand-to-tetris",
"homepage": null,
"size": 197,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 4.2012386
},
{
"id": 16673419,
"name": "nand2tetris",
"full_name": "apeshape/nand2tetris",
"owner": {
"login": "apeshape",
"id": 467144,
"avatar_url": "https://avatars.githubusercontent.com/u/467144?v=2",
"gravatar_id": "06c39e9c1f767125b7ee682fd6153bc2",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 4.2012386
},
{
"id": 10775059,
"name": "NAND2Tetris",
"full_name": "zpartal/NAND2Tetris",
"owner": {
"login": "zpartal",
"id": 1432346,
"avatar_url": "https://avatars.githubusercontent.com/u/1432346?v=2",
"gravatar_id": "70b93d63e0449507b78d91845401f9e6",
"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}",
"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,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 4.184633
},
{
"id": 8900733,
"name": "nand2tetris",
"full_name": "vfarcy/nand2tetris",
"owner": {
"login": "vfarcy",
"id": 3275024,
"avatar_url": "https://avatars.githubusercontent.com/u/3275024?v=2",
"gravatar_id": "40d4483f9bb4c3d699ea2dd39157c3ca",
"url": "https://api.github.com/users/vfarcy",
"html_url": "https://github.com/vfarcy",
"followers_url": "https://api.github.com/users/vfarcy/followers",
"following_url": "https://api.github.com/users/vfarcy/following{/other_user}",
"gists_url": "https://api.github.com/users/vfarcy/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vfarcy/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vfarcy/subscriptions",
"organizations_url": "https://api.github.com/users/vfarcy/orgs",
"repos_url": "https://api.github.com/users/vfarcy/repos",
"events_url": "https://api.github.com/users/vfarcy/events{/privacy}",
"received_events_url": "https://api.github.com/users/vfarcy/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/vfarcy/nand2tetris",
"description": "",
"fork": false,
"url": "https://api.github.com/repos/vfarcy/nand2tetris",
"forks_url": "https://api.github.com/repos/vfarcy/nand2tetris/forks",
"keys_url": "https://api.github.com/repos/vfarcy/nand2tetris/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/vfarcy/nand2tetris/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/vfarcy/nand2tetris/teams",
"hooks_url": "https://api.github.com/repos/vfarcy/nand2tetris/hooks",
"issue_events_url": "https://api.github.com/repos/vfarcy/nand2tetris/issues/events{/number}",
"events_url": "https://api.github.com/repos/vfarcy/nand2tetris/events",
"assignees_url": "https://api.github.com/repos/vfarcy/nand2tetris/assignees{/user}",
"branches_url": "https://api.github.com/repos/vfarcy/nand2tetris/branches{/branch}",
"tags_url": "https://api.github.com/repos/vfarcy/nand2tetris/tags",
"blobs_url": "https://api.github.com/repos/vfarcy/nand2tetris/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/vfarcy/nand2tetris/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/vfarcy/nand2tetris/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/vfarcy/nand2tetris/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/vfarcy/nand2tetris/statuses/{sha}",
"languages_url": "https://api.github.com/repos/vfarcy/nand2tetris/languages",
"stargazers_url": "https://api.github.com/repos/vfarcy/nand2tetris/stargazers",
"contributors_url": "https://api.github.com/repos/vfarcy/nand2tetris/contributors",
"subscribers_url": "https://api.github.com/repos/vfarcy/nand2tetris/subscribers",
"subscription_url": "https://api.github.com/repos/vfarcy/nand2tetris/subscription",
"commits_url": "https://api.github.com/repos/vfarcy/nand2tetris/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/vfarcy/nand2tetris/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/vfarcy/nand2tetris/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/vfarcy/nand2tetris/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/vfarcy/nand2tetris/contents/{+path}",
"compare_url": "https://api.github.com/repos/vfarcy/nand2tetris/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/vfarcy/nand2tetris/merges",
"archive_url": "https://api.github.com/repos/vfarcy/nand2tetris/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/vfarcy/nand2tetris/downloads",
"issues_url": "https://api.github.com/repos/vfarcy/nand2tetris/issues{/number}",
"pulls_url": "https://api.github.com/repos/vfarcy/nand2tetris/pulls{/number}",
"milestones_url": "https://api.github.com/repos/vfarcy/nand2tetris/milestones{/number}",
"notifications_url": "https://api.github.com/repos/vfarcy/nand2tetris/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/vfarcy/nand2tetris/labels{/name}",
"releases_url": "https://api.github.com/repos/vfarcy/nand2tetris/releases{/id}",
"created_at": "2013-03-20T09:38:06Z",
"updated_at": "2014-04-16T06:09:24Z",
"pushed_at": "2012-10-15T13:30:33Z",
"git_url": "git://github.com/vfarcy/nand2tetris.git",
"ssh_url": "git@github.com:vfarcy/nand2tetris.git",
"clone_url": "https://github.com/vfarcy/nand2tetris.git",
"svn_url": "https://github.com/vfarcy/nand2tetris",
"homepage": null,
"size": 76,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": false,
"has_downloads": true,
"has_wiki": true,
"forks_count": 1,
"mirror_url": null,
"open_issues_count": 0,
"forks": 1,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 3.9641697
},
{
"id": 8554163,
"name": "Nand2Tetris",
"full_name": "The-Skas/Nand2Tetris",
"owner": {
"login": "The-Skas",
"id": 3754977,
"avatar_url": "https://avatars.githubusercontent.com/u/3754977?v=2",
"gravatar_id": "6ebd86a3240f26c6fb606bb4e4686e1a",
"url": "https://api.github.com/users/The-Skas",
"html_url": "https://github.com/The-Skas",
"followers_url": "https://api.github.com/users/The-Skas/followers",
"following_url": "https://api.github.com/users/The-Skas/following{/other_user}",
"gists_url": "https://api.github.com/users/The-Skas/gists{/gist_id}",
"starred_url": "https://api.github.com/users/The-Skas/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/The-Skas/subscriptions",
"organizations_url": "https://api.github.com/users/The-Skas/orgs",
"repos_url": "https://api.github.com/users/The-Skas/repos",
"events_url": "https://api.github.com/users/The-Skas/events{/privacy}",
"received_events_url": "https://api.github.com/users/The-Skas/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/The-Skas/Nand2Tetris",
"description": "My progress in the nand2tetris course :)",
"fork": false,
"url": "https://api.github.com/repos/The-Skas/Nand2Tetris",
"forks_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/forks",
"keys_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/teams",
"hooks_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/hooks",
"issue_events_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/issues/events{/number}",
"events_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/events",
"assignees_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/assignees{/user}",
"branches_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/branches{/branch}",
"tags_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/tags",
"blobs_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/statuses/{sha}",
"languages_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/languages",
"stargazers_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/stargazers",
"contributors_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/contributors",
"subscribers_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/subscribers",
"subscription_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/subscription",
"commits_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/contents/{+path}",
"compare_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/merges",
"archive_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/downloads",
"issues_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/issues{/number}",
"pulls_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/pulls{/number}",
"milestones_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/milestones{/number}",
"notifications_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/labels{/name}",
"releases_url": "https://api.github.com/repos/The-Skas/Nand2Tetris/releases{/id}",
"created_at": "2013-03-04T11:23:14Z",
"updated_at": "2013-09-09T14:36:48Z",
"pushed_at": "2013-03-04T11:44:12Z",
"git_url": "git://github.com/The-Skas/Nand2Tetris.git",
"ssh_url": "git@github.com:The-Skas/Nand2Tetris.git",
"clone_url": "https://github.com/The-Skas/Nand2Tetris.git",
"svn_url": "https://github.com/The-Skas/Nand2Tetris",
"homepage": null,
"size": 604,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 3.9641697
},
{
"id": 9231647,
"name": "nand2Tetris",
"full_name": "dworthen/nand2Tetris",
"owner": {
"login": "dworthen",
"id": 624870,
"avatar_url": "https://avatars.githubusercontent.com/u/624870?v=2",
"gravatar_id": "83221d757d612c93dce0ca7c4220306e",
"url": "https://api.github.com/users/dworthen",
"html_url": "https://github.com/dworthen",
"followers_url": "https://api.github.com/users/dworthen/followers",
"following_url": "https://api.github.com/users/dworthen/following{/other_user}",
"gists_url": "https://api.github.com/users/dworthen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dworthen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dworthen/subscriptions",
"organizations_url": "https://api.github.com/users/dworthen/orgs",
"repos_url": "https://api.github.com/users/dworthen/repos",
"events_url": "https://api.github.com/users/dworthen/events{/privacy}",
"received_events_url": "https://api.github.com/users/dworthen/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/dworthen/nand2Tetris",
"description": "",
"fork": false,
"url": "https://api.github.com/repos/dworthen/nand2Tetris",
"forks_url": "https://api.github.com/repos/dworthen/nand2Tetris/forks",
"keys_url": "https://api.github.com/repos/dworthen/nand2Tetris/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/dworthen/nand2Tetris/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/dworthen/nand2Tetris/teams",
"hooks_url": "https://api.github.com/repos/dworthen/nand2Tetris/hooks",
"issue_events_url": "https://api.github.com/repos/dworthen/nand2Tetris/issues/events{/number}",
"events_url": "https://api.github.com/repos/dworthen/nand2Tetris/events",
"assignees_url": "https://api.github.com/repos/dworthen/nand2Tetris/assignees{/user}",
"branches_url": "https://api.github.com/repos/dworthen/nand2Tetris/branches{/branch}",
"tags_url": "https://api.github.com/repos/dworthen/nand2Tetris/tags",
"blobs_url": "https://api.github.com/repos/dworthen/nand2Tetris/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/dworthen/nand2Tetris/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/dworthen/nand2Tetris/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/dworthen/nand2Tetris/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/dworthen/nand2Tetris/statuses/{sha}",
"languages_url": "https://api.github.com/repos/dworthen/nand2Tetris/languages",
"stargazers_url": "https://api.github.com/repos/dworthen/nand2Tetris/stargazers",
"contributors_url": "https://api.github.com/repos/dworthen/nand2Tetris/contributors",
"subscribers_url": "https://api.github.com/repos/dworthen/nand2Tetris/subscribers",
"subscription_url": "https://api.github.com/repos/dworthen/nand2Tetris/subscription",
"commits_url": "https://api.github.com/repos/dworthen/nand2Tetris/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/dworthen/nand2Tetris/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/dworthen/nand2Tetris/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/dworthen/nand2Tetris/issues/comments/{number}",
"contents_url": "https://api.github.com/repos/dworthen/nand2Tetris/contents/{+path}",
"compare_url": "https://api.github.com/repos/dworthen/nand2Tetris/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/dworthen/nand2Tetris/merges",
"archive_url": "https://api.github.com/repos/dworthen/nand2Tetris/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/dworthen/nand2Tetris/downloads",
"issues_url": "https://api.github.com/repos/dworthen/nand2Tetris/issues{/number}",
"pulls_url": "https://api.github.com/repos/dworthen/nand2Tetris/pulls{/number}",
"milestones_url": "https://api.github.com/repos/dworthen/nand2Tetris/milestones{/number}",
"notifications_url": "https://api.github.com/repos/dworthen/nand2Tetris/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/dworthen/nand2Tetris/labels{/name}",
"releases_url": "https://api.github.com/repos/dworthen/nand2Tetris/releases{/id}",
"created_at": "2013-04-05T01:21:31Z",
"updated_at": "2013-09-30T05:30:59Z",
"pushed_at": "2013-04-07T04:18:28Z",
"git_url": "git://github.com/dworthen/nand2Tetris.git",
"ssh_url": "git@github.com:dworthen/nand2Tetris.git",
"clone_url": "https://github.com/dworthen/nand2Tetris.git",
"svn_url": "https://github.com/dworthen/nand2Tetris",
"homepage": null,
"size": 248,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Assembly",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 0,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 3.9641697
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment