diff --git a/homework/View.js b/homework/View.js new file mode 100644 index 000000000..b5ae067c6 --- /dev/null +++ b/homework/View.js @@ -0,0 +1,45 @@ +class View { + constructor(e) { + this.initialize(e); + } + async initialize(e) { + const t = document.getElementById('root'), r = Util.createAndAppend('header', t, { class: 'header' }); + Util.createAndAppend('p', r, { html: 'HYF Repositories' }); + const n = Util.createAndAppend('select', r, { + class: 'repo-selector', + 'aria-label': 'HYF Repositories', + }); + n.addEventListener('change', () => this.fetchAndRender(n.value)), + Util.createAndAppend('div', t, { id: 'container' }); + try { + const t = await Util.fetchJSON(e); + (this.repos = t.sort((e, t) => e.name.localeCompare(t.name)).map(e => new Repository(e))), + this.repos.forEach((e, t) => { + Util.createAndAppend('option', n, { html: e.name(), value: t }); + }), + this.fetchAndRender(n.value); + } + catch (e) { + this.renderError(e); + } + } + async fetchAndRender(e) { + const t = this.repos[e], r = document.getElementById('container'); + try { + const e = await t.fetchContributors(); + r.innerHTML = ''; + const n = Util.createAndAppend('div', r, { class: 'left-div whiteframe' }), i = Util.createAndAppend('div', r, { class: 'right-div whiteframe' }); + Util.createAndAppend('p', i, { html: 'Contributions', class: 'contributor-header' }); + const a = Util.createAndAppend('ul', i, { class: 'contributor-list' }); + t.render(n), e.map(e => new Contributor(e)).forEach(e => e.render(a)); + } + catch (e) { + this.renderError(e); + } + } + renderError(e) { + const t = document.getElementById('container'); + (t.innerHTML = ''), + Util.createAndAppend('div', t, { html: e.message, class: 'alert alert-error' }); + } +} diff --git a/homework/index.html b/homework/index.html index 9c8f80c1a..44a427255 100644 --- a/homework/index.html +++ b/homework/index.html @@ -16,8 +16,13 @@ -
- +

HYF Repositories

+ +
+

+

Contributins :

+
+ \ No newline at end of file diff --git a/homework/index.js b/homework/index.js index d3a97645e..76a54214a 100644 --- a/homework/index.js +++ b/homework/index.js @@ -29,6 +29,22 @@ }); return elem; } + function createLI(root, sel, options = []) { + const select = document.createElement(sel); + + root.appendChild(select); + select.innerHTML = options + .sort() + .map(repo => ``) + .join('\n'); + select.addEventListener('change', function() { + const chosenRepoId = +this.value; + const selectedRepo = options.find(repo => repo.id === chosenRepoId); + document.getElementById('repoInfo').innerHTML = 'repository: ' + selectedRepo.name + '
' + 'Description: ' + selectedRepo.description + "
>" + 'forks: ' + selectedRepo.forks + '
' + 'updated: ' + selectedRepo.updated_at; + document.getElementById('repoContributers').innerHTML + + }); + } function main(url) { fetchJSON(url, (err, data) => { @@ -36,7 +52,8 @@ if (err) { createAndAppend('div', root, { text: err.message, class: 'alert-error' }); } else { - createAndAppend('pre', root, { text: JSON.stringify(data, null, 2) }); + // createAndAppend('pre', root, { text: JSON.stringify(data, null, 2) }); + createLI(root, 'select', data); } }); } diff --git a/homework/repo.js b/homework/repo.js new file mode 100644 index 000000000..41ebffa73 --- /dev/null +++ b/homework/repo.js @@ -0,0 +1,4691 @@ +[ + { + "id": 65021716, + "node_id": "MDEwOlJlcG9zaXRvcnk2NTAyMTcxNg==", + "name": "AngularJS", + "full_name": "HackYourFuture/AngularJS", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/AngularJS", + "description": "Class material from angularJS module", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/AngularJS", + "forks_url": "https://api.github.com/repos/HackYourFuture/AngularJS/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/AngularJS/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/AngularJS/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/AngularJS/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/AngularJS/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/AngularJS/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/AngularJS/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/AngularJS/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/AngularJS/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/AngularJS/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/AngularJS/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/AngularJS/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/AngularJS/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/AngularJS/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/AngularJS/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/AngularJS/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/AngularJS/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/AngularJS/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/AngularJS/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/AngularJS/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/AngularJS/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/AngularJS/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/AngularJS/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/AngularJS/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/AngularJS/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/AngularJS/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/AngularJS/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/AngularJS/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/AngularJS/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/AngularJS/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/AngularJS/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/AngularJS/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/AngularJS/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/AngularJS/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/AngularJS/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/AngularJS/deployments", + "created_at": "2016-08-05T13:44:32Z", + "updated_at": "2018-04-06T17:18:06Z", + "pushed_at": "2017-02-02T10:10:02Z", + "git_url": "git://github.com/HackYourFuture/AngularJS.git", + "ssh_url": "git@github.com:HackYourFuture/AngularJS.git", + "clone_url": "https://github.com/HackYourFuture/AngularJS.git", + "svn_url": "https://github.com/HackYourFuture/AngularJS", + "homepage": "", + "size": 3480, + "stargazers_count": 2, + "watchers_count": 2, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 66195249, + "node_id": "MDEwOlJlcG9zaXRvcnk2NjE5NTI0OQ==", + "name": "tdd-game", + "full_name": "HackYourFuture/tdd-game", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/tdd-game", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/tdd-game", + "forks_url": "https://api.github.com/repos/HackYourFuture/tdd-game/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/tdd-game/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/tdd-game/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/tdd-game/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/tdd-game/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/tdd-game/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/tdd-game/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/tdd-game/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/tdd-game/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/tdd-game/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/tdd-game/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/tdd-game/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/tdd-game/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/tdd-game/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/tdd-game/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/tdd-game/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/tdd-game/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/tdd-game/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/tdd-game/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/tdd-game/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/tdd-game/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/tdd-game/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/tdd-game/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/tdd-game/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/tdd-game/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/tdd-game/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/tdd-game/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/tdd-game/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/tdd-game/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/tdd-game/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/tdd-game/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/tdd-game/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/tdd-game/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/tdd-game/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/tdd-game/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/tdd-game/deployments", + "created_at": "2016-08-21T11:24:56Z", + "updated_at": "2018-03-12T12:44:43Z", + "pushed_at": "2016-08-21T13:58:49Z", + "git_url": "git://github.com/HackYourFuture/tdd-game.git", + "ssh_url": "git@github.com:HackYourFuture/tdd-game.git", + "clone_url": "https://github.com/HackYourFuture/tdd-game.git", + "svn_url": "https://github.com/HackYourFuture/tdd-game", + "homepage": null, + "size": 5, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68593779, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODU5Mzc3OQ==", + "name": "Project", + "full_name": "HackYourFuture/Project", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/Project", + "description": "Here you can find specifications and deadlines for the project module", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/Project", + "forks_url": "https://api.github.com/repos/HackYourFuture/Project/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/Project/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/Project/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/Project/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/Project/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/Project/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/Project/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/Project/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/Project/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/Project/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/Project/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/Project/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/Project/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/Project/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/Project/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/Project/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/Project/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/Project/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/Project/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/Project/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/Project/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/Project/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/Project/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/Project/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/Project/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/Project/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/Project/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/Project/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/Project/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/Project/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/Project/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/Project/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/Project/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/Project/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/Project/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/Project/deployments", + "created_at": "2016-09-19T10:06:53Z", + "updated_at": "2019-04-14T12:56:57Z", + "pushed_at": "2019-05-21T13:34:57Z", + "git_url": "git://github.com/HackYourFuture/Project.git", + "ssh_url": "git@github.com:HackYourFuture/Project.git", + "clone_url": "https://github.com/HackYourFuture/Project.git", + "svn_url": "https://github.com/HackYourFuture/Project", + "homepage": null, + "size": 81, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 5, + "license": null, + "forks": 12, + "open_issues": 5, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68617514, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODYxNzUxNA==", + "name": "HTML-CSS", + "full_name": "HackYourFuture/HTML-CSS", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/HTML-CSS", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/HTML-CSS", + "forks_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/HTML-CSS/deployments", + "created_at": "2016-09-19T15:09:45Z", + "updated_at": "2019-05-28T12:49:54Z", + "pushed_at": "2019-05-29T12:59:17Z", + "git_url": "git://github.com/HackYourFuture/HTML-CSS.git", + "ssh_url": "git@github.com:HackYourFuture/HTML-CSS.git", + "clone_url": "https://github.com/HackYourFuture/HTML-CSS.git", + "svn_url": "https://github.com/HackYourFuture/HTML-CSS", + "homepage": null, + "size": 1491, + "stargazers_count": 34, + "watchers_count": 34, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 104, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "forks": 104, + "open_issues": 7, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 68906713, + "node_id": "MDEwOlJlcG9zaXRvcnk2ODkwNjcxMw==", + "name": "Node.js", + "full_name": "HackYourFuture/Node.js", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/Node.js", + "description": "HackYourFuture - Node.js", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/Node.js", + "forks_url": "https://api.github.com/repos/HackYourFuture/Node.js/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/Node.js/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/Node.js/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/Node.js/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/Node.js/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/Node.js/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/Node.js/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/Node.js/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/Node.js/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/Node.js/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/Node.js/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/Node.js/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/Node.js/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/Node.js/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/Node.js/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/Node.js/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/Node.js/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/Node.js/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/Node.js/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/Node.js/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/Node.js/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/Node.js/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/Node.js/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/Node.js/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/Node.js/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/Node.js/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/Node.js/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/Node.js/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/Node.js/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/Node.js/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/Node.js/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/Node.js/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/Node.js/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/Node.js/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/Node.js/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/Node.js/deployments", + "created_at": "2016-09-22T09:36:44Z", + "updated_at": "2019-04-17T19:24:38Z", + "pushed_at": "2019-05-27T17:49:50Z", + "git_url": "git://github.com/HackYourFuture/Node.js.git", + "ssh_url": "git@github.com:HackYourFuture/Node.js.git", + "clone_url": "https://github.com/HackYourFuture/Node.js.git", + "svn_url": "https://github.com/HackYourFuture/Node.js", + "homepage": "", + "size": 1123, + "stargazers_count": 34, + "watchers_count": 34, + "language": "JavaScript", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 205, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 34, + "license": null, + "forks": 205, + "open_issues": 34, + "watchers": 34, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 69110046, + "node_id": "MDEwOlJlcG9zaXRvcnk2OTExMDA0Ng==", + "name": "databases", + "full_name": "HackYourFuture/databases", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/databases", + "description": "Course structure for relational databases class using MySQL as an example", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/databases", + "forks_url": "https://api.github.com/repos/HackYourFuture/databases/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/databases/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/databases/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/databases/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/databases/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/databases/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/databases/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/databases/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/databases/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/databases/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/databases/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/databases/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/databases/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/databases/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/databases/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/databases/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/databases/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/databases/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/databases/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/databases/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/databases/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/databases/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/databases/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/databases/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/databases/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/databases/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/databases/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/databases/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/databases/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/databases/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/databases/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/databases/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/databases/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/databases/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/databases/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/databases/deployments", + "created_at": "2016-09-24T15:21:14Z", + "updated_at": "2019-05-21T05:09:14Z", + "pushed_at": "2019-04-03T21:49:28Z", + "git_url": "git://github.com/HackYourFuture/databases.git", + "ssh_url": "git@github.com:HackYourFuture/databases.git", + "clone_url": "https://github.com/HackYourFuture/databases.git", + "svn_url": "https://github.com/HackYourFuture/databases", + "homepage": "", + "size": 1936, + "stargazers_count": 11, + "watchers_count": 11, + "language": "HTML", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 147, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 26, + "license": null, + "forks": 147, + "open_issues": 26, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 70716559, + "node_id": "MDEwOlJlcG9zaXRvcnk3MDcxNjU1OQ==", + "name": "JavaScript1", + "full_name": "HackYourFuture/JavaScript1", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/JavaScript1", + "description": "JavaScript modules", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/JavaScript1", + "forks_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/JavaScript1/deployments", + "created_at": "2016-10-12T15:59:04Z", + "updated_at": "2019-05-27T09:07:21Z", + "pushed_at": "2019-05-26T21:11:17Z", + "git_url": "git://github.com/HackYourFuture/JavaScript1.git", + "ssh_url": "git@github.com:HackYourFuture/JavaScript1.git", + "clone_url": "https://github.com/HackYourFuture/JavaScript1.git", + "svn_url": "https://github.com/HackYourFuture/JavaScript1", + "homepage": "", + "size": 11093, + "stargazers_count": 48, + "watchers_count": 48, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 131, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 25, + "license": null, + "forks": 131, + "open_issues": 25, + "watchers": 48, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 73617780, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzYxNzc4MA==", + "name": "ukulele", + "full_name": "HackYourFuture/ukulele", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/ukulele", + "description": "Slack bot for exams", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/ukulele", + "forks_url": "https://api.github.com/repos/HackYourFuture/ukulele/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/ukulele/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/ukulele/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/ukulele/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/ukulele/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/ukulele/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/ukulele/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/ukulele/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/ukulele/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/ukulele/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/ukulele/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/ukulele/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/ukulele/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/ukulele/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/ukulele/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/ukulele/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/ukulele/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/ukulele/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/ukulele/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/ukulele/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/ukulele/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/ukulele/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/ukulele/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/ukulele/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/ukulele/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/ukulele/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/ukulele/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/ukulele/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/ukulele/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/ukulele/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/ukulele/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/ukulele/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/ukulele/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/ukulele/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/ukulele/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/ukulele/deployments", + "created_at": "2016-11-13T13:32:53Z", + "updated_at": "2016-11-23T22:06:45Z", + "pushed_at": "2017-01-30T21:12:55Z", + "git_url": "git://github.com/HackYourFuture/ukulele.git", + "ssh_url": "git@github.com:HackYourFuture/ukulele.git", + "clone_url": "https://github.com/HackYourFuture/ukulele.git", + "svn_url": "https://github.com/HackYourFuture/ukulele", + "homepage": null, + "size": 694, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 74269845, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDI2OTg0NQ==", + "name": "Authentication", + "full_name": "HackYourFuture/Authentication", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/Authentication", + "description": "Notes on authentication - how to think about it and what options are available", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/Authentication", + "forks_url": "https://api.github.com/repos/HackYourFuture/Authentication/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/Authentication/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/Authentication/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/Authentication/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/Authentication/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/Authentication/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/Authentication/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/Authentication/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/Authentication/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/Authentication/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/Authentication/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/Authentication/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/Authentication/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/Authentication/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/Authentication/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/Authentication/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/Authentication/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/Authentication/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/Authentication/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/Authentication/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/Authentication/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/Authentication/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/Authentication/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/Authentication/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/Authentication/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/Authentication/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/Authentication/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/Authentication/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/Authentication/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/Authentication/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/Authentication/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/Authentication/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/Authentication/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/Authentication/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/Authentication/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/Authentication/deployments", + "created_at": "2016-11-20T11:34:32Z", + "updated_at": "2017-05-17T11:41:48Z", + "pushed_at": "2017-05-17T13:51:58Z", + "git_url": "git://github.com/HackYourFuture/Authentication.git", + "ssh_url": "git@github.com:HackYourFuture/Authentication.git", + "clone_url": "https://github.com/HackYourFuture/Authentication.git", + "svn_url": "https://github.com/HackYourFuture/Authentication", + "homepage": null, + "size": 9, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 74854737, + "node_id": "MDEwOlJlcG9zaXRvcnk3NDg1NDczNw==", + "name": "Git", + "full_name": "HackYourFuture/Git", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/Git", + "description": "This repository contains the course material for the Git course", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/Git", + "forks_url": "https://api.github.com/repos/HackYourFuture/Git/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/Git/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/Git/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/Git/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/Git/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/Git/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/Git/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/Git/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/Git/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/Git/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/Git/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/Git/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/Git/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/Git/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/Git/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/Git/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/Git/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/Git/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/Git/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/Git/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/Git/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/Git/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/Git/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/Git/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/Git/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/Git/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/Git/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/Git/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/Git/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/Git/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/Git/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/Git/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/Git/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/Git/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/Git/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/Git/deployments", + "created_at": "2016-11-26T22:45:13Z", + "updated_at": "2019-05-20T05:03:01Z", + "pushed_at": "2019-04-18T11:33:22Z", + "git_url": "git://github.com/HackYourFuture/Git.git", + "ssh_url": "git@github.com:HackYourFuture/Git.git", + "clone_url": "https://github.com/HackYourFuture/Git.git", + "svn_url": "https://github.com/HackYourFuture/Git", + "homepage": null, + "size": 28, + "stargazers_count": 8, + "watchers_count": 8, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 25, + "open_issues": 0, + "watchers": 8, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 75539321, + "node_id": "MDEwOlJlcG9zaXRvcnk3NTUzOTMyMQ==", + "name": "CommandLine", + "full_name": "HackYourFuture/CommandLine", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/CommandLine", + "description": "This repository contains the teaching material and notes for the UNIX-based (bash) command line.", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/CommandLine", + "forks_url": "https://api.github.com/repos/HackYourFuture/CommandLine/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/CommandLine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/CommandLine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/CommandLine/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/CommandLine/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/CommandLine/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/CommandLine/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/CommandLine/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/CommandLine/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/CommandLine/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/CommandLine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/CommandLine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/CommandLine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/CommandLine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/CommandLine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/CommandLine/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/CommandLine/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/CommandLine/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/CommandLine/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/CommandLine/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/CommandLine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/CommandLine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/CommandLine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/CommandLine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/CommandLine/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/CommandLine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/CommandLine/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/CommandLine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/CommandLine/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/CommandLine/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/CommandLine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/CommandLine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/CommandLine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/CommandLine/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/CommandLine/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/CommandLine/deployments", + "created_at": "2016-12-04T13:31:41Z", + "updated_at": "2019-04-08T15:39:52Z", + "pushed_at": "2019-04-08T15:39:51Z", + "git_url": "git://github.com/HackYourFuture/CommandLine.git", + "ssh_url": "git@github.com:HackYourFuture/CommandLine.git", + "clone_url": "https://github.com/HackYourFuture/CommandLine.git", + "svn_url": "https://github.com/HackYourFuture/CommandLine", + "homepage": null, + "size": 1135, + "stargazers_count": 9, + "watchers_count": 9, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 25, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 25, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 76781601, + "node_id": "MDEwOlJlcG9zaXRvcnk3Njc4MTYwMQ==", + "name": "funday-arabic-drummachine", + "full_name": "HackYourFuture/funday-arabic-drummachine", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/funday-arabic-drummachine", + "description": "arabic drum machine", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine", + "forks_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/funday-arabic-drummachine/deployments", + "created_at": "2016-12-18T12:30:14Z", + "updated_at": "2016-12-18T17:24:22Z", + "pushed_at": "2016-12-19T10:11:13Z", + "git_url": "git://github.com/HackYourFuture/funday-arabic-drummachine.git", + "ssh_url": "git@github.com:HackYourFuture/funday-arabic-drummachine.git", + "clone_url": "https://github.com/HackYourFuture/funday-arabic-drummachine.git", + "svn_url": "https://github.com/HackYourFuture/funday-arabic-drummachine", + "homepage": null, + "size": 7192, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 80990766, + "node_id": "MDEwOlJlcG9zaXRvcnk4MDk5MDc2Ng==", + "name": "PromisessObjectsAndStringRendering", + "full_name": "HackYourFuture/PromisessObjectsAndStringRendering", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/PromisessObjectsAndStringRendering", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering", + "forks_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/PromisessObjectsAndStringRendering/deployments", + "created_at": "2017-02-05T12:17:26Z", + "updated_at": "2017-02-05T12:18:07Z", + "pushed_at": "2017-10-22T00:16:35Z", + "git_url": "git://github.com/HackYourFuture/PromisessObjectsAndStringRendering.git", + "ssh_url": "git@github.com:HackYourFuture/PromisessObjectsAndStringRendering.git", + "clone_url": "https://github.com/HackYourFuture/PromisessObjectsAndStringRendering.git", + "svn_url": "https://github.com/HackYourFuture/PromisessObjectsAndStringRendering", + "homepage": null, + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 13, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": null, + "forks": 13, + "open_issues": 3, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81510486, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTUxMDQ4Ng==", + "name": "curriculum", + "full_name": "HackYourFuture/curriculum", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/curriculum", + "description": "Overview of the HackYourFuture program.", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/curriculum", + "forks_url": "https://api.github.com/repos/HackYourFuture/curriculum/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/curriculum/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/curriculum/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/curriculum/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/curriculum/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/curriculum/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/curriculum/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/curriculum/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/curriculum/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/curriculum/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/curriculum/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/curriculum/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/curriculum/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/curriculum/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/curriculum/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/curriculum/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/curriculum/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/curriculum/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/curriculum/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/curriculum/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/curriculum/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/curriculum/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/curriculum/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/curriculum/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/curriculum/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/curriculum/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/curriculum/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/curriculum/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/curriculum/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/curriculum/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/curriculum/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/curriculum/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/curriculum/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/curriculum/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/curriculum/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/curriculum/deployments", + "created_at": "2017-02-10T00:53:31Z", + "updated_at": "2019-05-26T20:30:40Z", + "pushed_at": "2019-05-13T14:22:54Z", + "git_url": "git://github.com/HackYourFuture/curriculum.git", + "ssh_url": "git@github.com:HackYourFuture/curriculum.git", + "clone_url": "https://github.com/HackYourFuture/curriculum.git", + "svn_url": "https://github.com/HackYourFuture/curriculum", + "homepage": "", + "size": 872, + "stargazers_count": 289, + "watchers_count": 289, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 59, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 59, + "open_issues": 0, + "watchers": 289, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81720718, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTcyMDcxOA==", + "name": "TDD-TTT", + "full_name": "HackYourFuture/TDD-TTT", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/TDD-TTT", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/TDD-TTT", + "forks_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/TDD-TTT/deployments", + "created_at": "2017-02-12T11:20:05Z", + "updated_at": "2017-04-06T12:32:08Z", + "pushed_at": "2017-02-12T14:45:45Z", + "git_url": "git://github.com/HackYourFuture/TDD-TTT.git", + "ssh_url": "git@github.com:HackYourFuture/TDD-TTT.git", + "clone_url": "https://github.com/HackYourFuture/TDD-TTT.git", + "svn_url": "https://github.com/HackYourFuture/TDD-TTT", + "homepage": null, + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 7, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 7, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 81876061, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTg3NjA2MQ==", + "name": "angular", + "full_name": "HackYourFuture/angular", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/angular", + "description": "Angular", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/angular", + "forks_url": "https://api.github.com/repos/HackYourFuture/angular/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/angular/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/angular/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/angular/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/angular/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/angular/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/angular/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/angular/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/angular/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/angular/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/angular/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/angular/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/angular/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/angular/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/angular/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/angular/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/angular/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/angular/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/angular/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/angular/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/angular/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/angular/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/angular/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/angular/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/angular/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/angular/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/angular/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/angular/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/angular/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/angular/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/angular/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/angular/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/angular/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/angular/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/angular/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/angular/deployments", + "created_at": "2017-02-13T21:56:14Z", + "updated_at": "2018-04-06T17:17:51Z", + "pushed_at": "2017-03-05T08:04:07Z", + "git_url": "git://github.com/HackYourFuture/angular.git", + "ssh_url": "git@github.com:HackYourFuture/angular.git", + "clone_url": "https://github.com/HackYourFuture/angular.git", + "svn_url": "https://github.com/HackYourFuture/angular", + "homepage": null, + "size": 31, + "stargazers_count": 3, + "watchers_count": 3, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 82380441, + "node_id": "MDEwOlJlcG9zaXRvcnk4MjM4MDQ0MQ==", + "name": "hyf-db-pop", + "full_name": "HackYourFuture/hyf-db-pop", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/hyf-db-pop", + "description": "HackYourFuture Database Populator", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop", + "forks_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/hyf-db-pop/deployments", + "created_at": "2017-02-18T10:56:11Z", + "updated_at": "2017-09-24T11:42:18Z", + "pushed_at": "2017-09-11T08:45:04Z", + "git_url": "git://github.com/HackYourFuture/hyf-db-pop.git", + "ssh_url": "git@github.com:HackYourFuture/hyf-db-pop.git", + "clone_url": "https://github.com/HackYourFuture/hyf-db-pop.git", + "svn_url": "https://github.com/HackYourFuture/hyf-db-pop", + "homepage": null, + "size": 74, + "stargazers_count": 1, + "watchers_count": 1, + "language": "PLpgSQL", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 82560415, + "node_id": "MDEwOlJlcG9zaXRvcnk4MjU2MDQxNQ==", + "name": "alumni", + "full_name": "HackYourFuture/alumni", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/alumni", + "description": "Alumni Guides, everything you need to land a job", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/alumni", + "forks_url": "https://api.github.com/repos/HackYourFuture/alumni/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/alumni/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/alumni/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/alumni/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/alumni/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/alumni/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/alumni/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/alumni/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/alumni/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/alumni/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/alumni/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/alumni/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/alumni/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/alumni/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/alumni/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/alumni/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/alumni/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/alumni/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/alumni/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/alumni/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/alumni/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/alumni/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/alumni/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/alumni/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/alumni/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/alumni/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/alumni/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/alumni/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/alumni/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/alumni/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/alumni/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/alumni/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/alumni/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/alumni/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/alumni/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/alumni/deployments", + "created_at": "2017-02-20T13:23:36Z", + "updated_at": "2019-05-20T20:50:03Z", + "pushed_at": "2019-04-09T07:16:32Z", + "git_url": "git://github.com/HackYourFuture/alumni.git", + "ssh_url": "git@github.com:HackYourFuture/alumni.git", + "clone_url": "https://github.com/HackYourFuture/alumni.git", + "svn_url": "https://github.com/HackYourFuture/alumni", + "homepage": "", + "size": 1908, + "stargazers_count": 20, + "watchers_count": 20, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 9, + "open_issues": 1, + "watchers": 20, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 83332366, + "node_id": "MDEwOlJlcG9zaXRvcnk4MzMzMjM2Ng==", + "name": "example-api-express-typescript", + "full_name": "HackYourFuture/example-api-express-typescript", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/example-api-express-typescript", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript", + "forks_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/example-api-express-typescript/deployments", + "created_at": "2017-02-27T16:35:04Z", + "updated_at": "2017-02-27T16:35:35Z", + "pushed_at": "2017-03-01T17:30:14Z", + "git_url": "git://github.com/HackYourFuture/example-api-express-typescript.git", + "ssh_url": "git@github.com:HackYourFuture/example-api-express-typescript.git", + "clone_url": "https://github.com/HackYourFuture/example-api-express-typescript.git", + "svn_url": "https://github.com/HackYourFuture/example-api-express-typescript", + "homepage": null, + "size": 10, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 85620885, + "node_id": "MDEwOlJlcG9zaXRvcnk4NTYyMDg4NQ==", + "name": "generala", + "full_name": "HackYourFuture/generala", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/generala", + "description": "For Natan :)", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/generala", + "forks_url": "https://api.github.com/repos/HackYourFuture/generala/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/generala/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/generala/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/generala/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/generala/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/generala/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/generala/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/generala/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/generala/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/generala/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/generala/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/generala/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/generala/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/generala/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/generala/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/generala/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/generala/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/generala/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/generala/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/generala/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/generala/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/generala/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/generala/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/generala/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/generala/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/generala/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/generala/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/generala/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/generala/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/generala/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/generala/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/generala/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/generala/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/generala/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/generala/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/generala/deployments", + "created_at": "2017-03-20T20:06:37Z", + "updated_at": "2017-04-30T13:15:34Z", + "pushed_at": "2017-06-04T12:41:23Z", + "git_url": "git://github.com/HackYourFuture/generala.git", + "ssh_url": "git@github.com:HackYourFuture/generala.git", + "clone_url": "https://github.com/HackYourFuture/generala.git", + "svn_url": "https://github.com/HackYourFuture/generala", + "homepage": null, + "size": 15157, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86980037, + "node_id": "MDEwOlJlcG9zaXRvcnk4Njk4MDAzNw==", + "name": "battleship-api", + "full_name": "HackYourFuture/battleship-api", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/battleship-api", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/battleship-api", + "forks_url": "https://api.github.com/repos/HackYourFuture/battleship-api/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/battleship-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/battleship-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/battleship-api/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/battleship-api/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/battleship-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/battleship-api/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/battleship-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/battleship-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/battleship-api/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/battleship-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/battleship-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/battleship-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/battleship-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/battleship-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/battleship-api/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/battleship-api/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/battleship-api/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/battleship-api/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/battleship-api/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/battleship-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/battleship-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/battleship-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/battleship-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/battleship-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/battleship-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/battleship-api/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/battleship-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/battleship-api/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/battleship-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/battleship-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/battleship-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/battleship-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/battleship-api/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/battleship-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/battleship-api/deployments", + "created_at": "2017-04-02T10:49:30Z", + "updated_at": "2017-04-02T12:11:39Z", + "pushed_at": "2017-04-02T14:21:48Z", + "git_url": "git://github.com/HackYourFuture/battleship-api.git", + "ssh_url": "git@github.com:HackYourFuture/battleship-api.git", + "clone_url": "https://github.com/HackYourFuture/battleship-api.git", + "svn_url": "https://github.com/HackYourFuture/battleship-api", + "homepage": null, + "size": 14, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 86982460, + "node_id": "MDEwOlJlcG9zaXRvcnk4Njk4MjQ2MA==", + "name": "battleship-client", + "full_name": "HackYourFuture/battleship-client", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/battleship-client", + "description": "Battleship Client", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/battleship-client", + "forks_url": "https://api.github.com/repos/HackYourFuture/battleship-client/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/battleship-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/battleship-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/battleship-client/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/battleship-client/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/battleship-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/battleship-client/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/battleship-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/battleship-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/battleship-client/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/battleship-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/battleship-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/battleship-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/battleship-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/battleship-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/battleship-client/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/battleship-client/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/battleship-client/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/battleship-client/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/battleship-client/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/battleship-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/battleship-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/battleship-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/battleship-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/battleship-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/battleship-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/battleship-client/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/battleship-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/battleship-client/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/battleship-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/battleship-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/battleship-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/battleship-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/battleship-client/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/battleship-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/battleship-client/deployments", + "created_at": "2017-04-02T11:42:38Z", + "updated_at": "2017-04-02T11:59:30Z", + "pushed_at": "2017-04-02T14:21:09Z", + "git_url": "git://github.com/HackYourFuture/battleship-client.git", + "ssh_url": "git@github.com:HackYourFuture/battleship-client.git", + "clone_url": "https://github.com/HackYourFuture/battleship-client.git", + "svn_url": "https://github.com/HackYourFuture/battleship-client", + "homepage": null, + "size": 473, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 87658870, + "node_id": "MDEwOlJlcG9zaXRvcnk4NzY1ODg3MA==", + "name": "masterclass-react-redux", + "full_name": "HackYourFuture/masterclass-react-redux", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/masterclass-react-redux", + "description": "Repository for the Masterclass React/Redux", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux", + "forks_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/masterclass-react-redux/deployments", + "created_at": "2017-04-08T19:28:32Z", + "updated_at": "2017-04-22T08:36:45Z", + "pushed_at": "2017-04-23T13:45:26Z", + "git_url": "git://github.com/HackYourFuture/masterclass-react-redux.git", + "ssh_url": "git@github.com:HackYourFuture/masterclass-react-redux.git", + "clone_url": "https://github.com/HackYourFuture/masterclass-react-redux.git", + "svn_url": "https://github.com/HackYourFuture/masterclass-react-redux", + "homepage": null, + "size": 233, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 1, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89133947, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTEzMzk0Nw==", + "name": "DataStructures", + "full_name": "HackYourFuture/DataStructures", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/DataStructures", + "description": "Algorithms and Data structures course", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/DataStructures", + "forks_url": "https://api.github.com/repos/HackYourFuture/DataStructures/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/DataStructures/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/DataStructures/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/DataStructures/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/DataStructures/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/DataStructures/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/DataStructures/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/DataStructures/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/DataStructures/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/DataStructures/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/DataStructures/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/DataStructures/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/DataStructures/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/DataStructures/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/DataStructures/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/DataStructures/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/DataStructures/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/DataStructures/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/DataStructures/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/DataStructures/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/DataStructures/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/DataStructures/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/DataStructures/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/DataStructures/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/DataStructures/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/DataStructures/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/DataStructures/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/DataStructures/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/DataStructures/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/DataStructures/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/DataStructures/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/DataStructures/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/DataStructures/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/DataStructures/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/DataStructures/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/DataStructures/deployments", + "created_at": "2017-04-23T10:28:57Z", + "updated_at": "2019-03-19T21:04:31Z", + "pushed_at": "2018-05-15T20:58:20Z", + "git_url": "git://github.com/HackYourFuture/DataStructures.git", + "ssh_url": "git@github.com:HackYourFuture/DataStructures.git", + "clone_url": "https://github.com/HackYourFuture/DataStructures.git", + "svn_url": "https://github.com/HackYourFuture/DataStructures", + "homepage": null, + "size": 39, + "stargazers_count": 6, + "watchers_count": 6, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 12, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 8, + "license": null, + "forks": 12, + "open_issues": 8, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89284229, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTI4NDIyOQ==", + "name": "TicTacToeTDD", + "full_name": "HackYourFuture/TicTacToeTDD", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/TicTacToeTDD", + "description": "TDD - TicTacToe", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD", + "forks_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/TicTacToeTDD/deployments", + "created_at": "2017-04-24T20:30:03Z", + "updated_at": "2017-04-24T20:31:15Z", + "pushed_at": "2017-10-28T23:08:45Z", + "git_url": "git://github.com/HackYourFuture/TicTacToeTDD.git", + "ssh_url": "git@github.com:HackYourFuture/TicTacToeTDD.git", + "clone_url": "https://github.com/HackYourFuture/TicTacToeTDD.git", + "svn_url": "https://github.com/HackYourFuture/TicTacToeTDD", + "homepage": null, + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "forks": 6, + "open_issues": 4, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89284743, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTI4NDc0Mw==", + "name": "OOP-Student-and-Teacher", + "full_name": "HackYourFuture/OOP-Student-and-Teacher", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/OOP-Student-and-Teacher", + "description": "OOP Student Teacher", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher", + "forks_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/OOP-Student-and-Teacher/deployments", + "created_at": "2017-04-24T20:36:13Z", + "updated_at": "2017-04-24T20:44:32Z", + "pushed_at": "2017-04-24T20:52:12Z", + "git_url": "git://github.com/HackYourFuture/OOP-Student-and-Teacher.git", + "ssh_url": "git@github.com:HackYourFuture/OOP-Student-and-Teacher.git", + "clone_url": "https://github.com/HackYourFuture/OOP-Student-and-Teacher.git", + "svn_url": "https://github.com/HackYourFuture/OOP-Student-and-Teacher", + "homepage": null, + "size": 5, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89797696, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTc5NzY5Ng==", + "name": "project-webapp-angular", + "full_name": "HackYourFuture/project-webapp-angular", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/project-webapp-angular", + "description": "Angular scaffold for Project module", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular", + "forks_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/project-webapp-angular/deployments", + "created_at": "2017-04-29T16:26:33Z", + "updated_at": "2017-04-29T16:26:44Z", + "pushed_at": "2017-06-10T01:39:43Z", + "git_url": "git://github.com/HackYourFuture/project-webapp-angular.git", + "ssh_url": "git@github.com:HackYourFuture/project-webapp-angular.git", + "clone_url": "https://github.com/HackYourFuture/project-webapp-angular.git", + "svn_url": "https://github.com/HackYourFuture/project-webapp-angular", + "homepage": null, + "size": 16, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 8, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 89814318, + "node_id": "MDEwOlJlcG9zaXRvcnk4OTgxNDMxOA==", + "name": "project-api", + "full_name": "HackYourFuture/project-api", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/project-api", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/project-api", + "forks_url": "https://api.github.com/repos/HackYourFuture/project-api/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/project-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/project-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/project-api/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/project-api/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/project-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/project-api/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/project-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/project-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/project-api/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/project-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/project-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/project-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/project-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/project-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/project-api/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/project-api/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/project-api/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/project-api/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/project-api/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/project-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/project-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/project-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/project-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/project-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/project-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/project-api/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/project-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/project-api/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/project-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/project-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/project-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/project-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/project-api/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/project-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/project-api/deployments", + "created_at": "2017-04-29T21:37:29Z", + "updated_at": "2017-04-29T21:37:43Z", + "pushed_at": "2017-04-30T19:02:11Z", + "git_url": "git://github.com/HackYourFuture/project-api.git", + "ssh_url": "git@github.com:HackYourFuture/project-api.git", + "clone_url": "https://github.com/HackYourFuture/project-api.git", + "svn_url": "https://github.com/HackYourFuture/project-api", + "homepage": null, + "size": 8, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 10, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 92661036, + "node_id": "MDEwOlJlcG9zaXRvcnk5MjY2MTAzNg==", + "name": "Iraq", + "full_name": "HackYourFuture/Iraq", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/Iraq", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/Iraq", + "forks_url": "https://api.github.com/repos/HackYourFuture/Iraq/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/Iraq/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/Iraq/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/Iraq/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/Iraq/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/Iraq/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/Iraq/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/Iraq/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/Iraq/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/Iraq/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/Iraq/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/Iraq/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/Iraq/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/Iraq/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/Iraq/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/Iraq/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/Iraq/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/Iraq/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/Iraq/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/Iraq/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/Iraq/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/Iraq/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/Iraq/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/Iraq/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/Iraq/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/Iraq/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/Iraq/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/Iraq/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/Iraq/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/Iraq/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/Iraq/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/Iraq/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/Iraq/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/Iraq/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/Iraq/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/Iraq/deployments", + "created_at": "2017-05-28T12:53:08Z", + "updated_at": "2017-06-07T23:08:36Z", + "pushed_at": "2017-06-26T19:51:33Z", + "git_url": "git://github.com/HackYourFuture/Iraq.git", + "ssh_url": "git@github.com:HackYourFuture/Iraq.git", + "clone_url": "https://github.com/HackYourFuture/Iraq.git", + "svn_url": "https://github.com/HackYourFuture/Iraq", + "homepage": null, + "size": 414, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 93503545, + "node_id": "MDEwOlJlcG9zaXRvcnk5MzUwMzU0NQ==", + "name": "React", + "full_name": "HackYourFuture/React", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/React", + "description": "Specifications React Module", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/React", + "forks_url": "https://api.github.com/repos/HackYourFuture/React/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/React/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/React/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/React/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/React/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/React/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/React/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/React/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/React/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/React/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/React/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/React/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/React/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/React/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/React/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/React/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/React/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/React/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/React/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/React/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/React/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/React/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/React/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/React/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/React/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/React/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/React/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/React/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/React/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/React/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/React/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/React/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/React/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/React/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/React/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/React/deployments", + "created_at": "2017-06-06T09:58:23Z", + "updated_at": "2019-05-20T14:03:39Z", + "pushed_at": "2019-05-17T15:27:40Z", + "git_url": "git://github.com/HackYourFuture/React.git", + "ssh_url": "git@github.com:HackYourFuture/React.git", + "clone_url": "https://github.com/HackYourFuture/React.git", + "svn_url": "https://github.com/HackYourFuture/React", + "homepage": null, + "size": 1404, + "stargazers_count": 25, + "watchers_count": 25, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 146, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 40, + "license": null, + "forks": 146, + "open_issues": 40, + "watchers": 25, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 94761807, + "node_id": "MDEwOlJlcG9zaXRvcnk5NDc2MTgwNw==", + "name": "generala2", + "full_name": "HackYourFuture/generala2", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/generala2", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/generala2", + "forks_url": "https://api.github.com/repos/HackYourFuture/generala2/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/generala2/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/generala2/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/generala2/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/generala2/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/generala2/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/generala2/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/generala2/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/generala2/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/generala2/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/generala2/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/generala2/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/generala2/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/generala2/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/generala2/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/generala2/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/generala2/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/generala2/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/generala2/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/generala2/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/generala2/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/generala2/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/generala2/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/generala2/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/generala2/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/generala2/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/generala2/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/generala2/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/generala2/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/generala2/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/generala2/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/generala2/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/generala2/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/generala2/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/generala2/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/generala2/deployments", + "created_at": "2017-06-19T09:48:55Z", + "updated_at": "2017-08-06T20:01:05Z", + "pushed_at": "2017-09-15T10:43:55Z", + "git_url": "git://github.com/HackYourFuture/generala2.git", + "ssh_url": "git@github.com:HackYourFuture/generala2.git", + "clone_url": "https://github.com/HackYourFuture/generala2.git", + "svn_url": "https://github.com/HackYourFuture/generala2", + "homepage": null, + "size": 139, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 0, + "open_issues": 6, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 99476893, + "node_id": "MDEwOlJlcG9zaXRvcnk5OTQ3Njg5Mw==", + "name": "hackyourfuture.github.io", + "full_name": "HackYourFuture/hackyourfuture.github.io", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/hackyourfuture.github.io", + "description": "HackYourFuture Website", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io", + "forks_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/hackyourfuture.github.io/deployments", + "created_at": "2017-08-06T09:34:24Z", + "updated_at": "2019-05-28T11:37:28Z", + "pushed_at": "2019-05-28T11:37:25Z", + "git_url": "git://github.com/HackYourFuture/hackyourfuture.github.io.git", + "ssh_url": "git@github.com:HackYourFuture/hackyourfuture.github.io.git", + "clone_url": "https://github.com/HackYourFuture/hackyourfuture.github.io.git", + "svn_url": "https://github.com/HackYourFuture/hackyourfuture.github.io", + "homepage": "https://www.hackyourfuture.net", + "size": 65816, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Vue", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 10, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 16, + "license": null, + "forks": 10, + "open_issues": 16, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 106288439, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDYyODg0Mzk=", + "name": "debugging", + "full_name": "HackYourFuture/debugging", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/debugging", + "description": "setup repo for debugging assignments that will be added to the js repo", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/debugging", + "forks_url": "https://api.github.com/repos/HackYourFuture/debugging/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/debugging/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/debugging/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/debugging/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/debugging/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/debugging/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/debugging/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/debugging/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/debugging/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/debugging/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/debugging/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/debugging/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/debugging/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/debugging/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/debugging/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/debugging/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/debugging/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/debugging/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/debugging/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/debugging/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/debugging/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/debugging/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/debugging/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/debugging/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/debugging/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/debugging/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/debugging/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/debugging/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/debugging/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/debugging/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/debugging/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/debugging/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/debugging/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/debugging/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/debugging/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/debugging/deployments", + "created_at": "2017-10-09T13:38:53Z", + "updated_at": "2017-12-18T23:26:53Z", + "pushed_at": "2018-01-15T13:09:08Z", + "git_url": "git://github.com/HackYourFuture/debugging.git", + "ssh_url": "git@github.com:HackYourFuture/debugging.git", + "clone_url": "https://github.com/HackYourFuture/debugging.git", + "svn_url": "https://github.com/HackYourFuture/debugging", + "homepage": null, + "size": 75, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 20, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 20, + "open_issues": 1, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 109949629, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDk5NDk2Mjk=", + "name": "rover-levels", + "full_name": "HackYourFuture/rover-levels", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/rover-levels", + "description": "Levels for the Rover game", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/rover-levels", + "forks_url": "https://api.github.com/repos/HackYourFuture/rover-levels/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/rover-levels/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/rover-levels/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/rover-levels/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/rover-levels/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/rover-levels/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/rover-levels/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/rover-levels/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/rover-levels/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/rover-levels/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/rover-levels/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/rover-levels/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/rover-levels/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/rover-levels/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/rover-levels/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/rover-levels/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/rover-levels/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/rover-levels/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/rover-levels/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/rover-levels/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/rover-levels/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/rover-levels/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/rover-levels/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/rover-levels/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/rover-levels/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/rover-levels/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/rover-levels/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/rover-levels/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/rover-levels/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/rover-levels/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/rover-levels/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/rover-levels/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/rover-levels/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/rover-levels/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/rover-levels/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/rover-levels/deployments", + "created_at": "2017-11-08T08:41:38Z", + "updated_at": "2017-11-27T19:43:46Z", + "pushed_at": "2017-11-26T10:26:55Z", + "git_url": "git://github.com/HackYourFuture/rover-levels.git", + "ssh_url": "git@github.com:HackYourFuture/rover-levels.git", + "clone_url": "https://github.com/HackYourFuture/rover-levels.git", + "svn_url": "https://github.com/HackYourFuture/rover-levels", + "homepage": null, + "size": 46, + "stargazers_count": 1, + "watchers_count": 1, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 110989614, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTA5ODk2MTQ=", + "name": "startacodeschool", + "full_name": "HackYourFuture/startacodeschool", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/startacodeschool", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/startacodeschool", + "forks_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/startacodeschool/deployments", + "created_at": "2017-11-16T15:38:53Z", + "updated_at": "2019-05-15T10:03:08Z", + "pushed_at": "2017-11-28T14:03:01Z", + "git_url": "git://github.com/HackYourFuture/startacodeschool.git", + "ssh_url": "git@github.com:HackYourFuture/startacodeschool.git", + "clone_url": "https://github.com/HackYourFuture/startacodeschool.git", + "svn_url": "https://github.com/HackYourFuture/startacodeschool", + "homepage": "https://hackyourfuture.gitbooks.io/startacodeschool/content/", + "size": 507, + "stargazers_count": 19, + "watchers_count": 19, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 2, + "open_issues": 0, + "watchers": 19, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 117376308, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTczNzYzMDg=", + "name": "RobotApp", + "full_name": "HackYourFuture/RobotApp", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/RobotApp", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/RobotApp", + "forks_url": "https://api.github.com/repos/HackYourFuture/RobotApp/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/RobotApp/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/RobotApp/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/RobotApp/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/RobotApp/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/RobotApp/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/RobotApp/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/RobotApp/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/RobotApp/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/RobotApp/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/RobotApp/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/RobotApp/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/RobotApp/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/RobotApp/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/RobotApp/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/RobotApp/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/RobotApp/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/RobotApp/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/RobotApp/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/RobotApp/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/RobotApp/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/RobotApp/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/RobotApp/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/RobotApp/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/RobotApp/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/RobotApp/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/RobotApp/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/RobotApp/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/RobotApp/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/RobotApp/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/RobotApp/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/RobotApp/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/RobotApp/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/RobotApp/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/RobotApp/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/RobotApp/deployments", + "created_at": "2018-01-13T20:35:56Z", + "updated_at": "2018-11-30T20:35:27Z", + "pushed_at": "2018-09-22T11:41:10Z", + "git_url": "git://github.com/HackYourFuture/RobotApp.git", + "ssh_url": "git@github.com:HackYourFuture/RobotApp.git", + "clone_url": "https://github.com/HackYourFuture/RobotApp.git", + "svn_url": "https://github.com/HackYourFuture/RobotApp", + "homepage": null, + "size": 193, + "stargazers_count": 2, + "watchers_count": 2, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 4, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 117554532, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTc1NTQ1MzI=", + "name": "teaching_tips_tricks", + "full_name": "HackYourFuture/teaching_tips_tricks", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/teaching_tips_tricks", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks", + "forks_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/teaching_tips_tricks/deployments", + "created_at": "2018-01-15T14:18:34Z", + "updated_at": "2019-03-19T21:01:47Z", + "pushed_at": "2019-05-26T12:03:10Z", + "git_url": "git://github.com/HackYourFuture/teaching_tips_tricks.git", + "ssh_url": "git@github.com:HackYourFuture/teaching_tips_tricks.git", + "clone_url": "https://github.com/HackYourFuture/teaching_tips_tricks.git", + "svn_url": "https://github.com/HackYourFuture/teaching_tips_tricks", + "homepage": null, + "size": 78, + "stargazers_count": 11, + "watchers_count": 11, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "forks": 5, + "open_issues": 1, + "watchers": 11, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 118340223, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTgzNDAyMjM=", + "name": "React_APIs", + "full_name": "HackYourFuture/React_APIs", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/React_APIs", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/React_APIs", + "forks_url": "https://api.github.com/repos/HackYourFuture/React_APIs/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/React_APIs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/React_APIs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/React_APIs/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/React_APIs/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/React_APIs/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/React_APIs/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/React_APIs/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/React_APIs/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/React_APIs/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/React_APIs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/React_APIs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/React_APIs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/React_APIs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/React_APIs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/React_APIs/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/React_APIs/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/React_APIs/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/React_APIs/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/React_APIs/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/React_APIs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/React_APIs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/React_APIs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/React_APIs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/React_APIs/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/React_APIs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/React_APIs/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/React_APIs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/React_APIs/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/React_APIs/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/React_APIs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/React_APIs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/React_APIs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/React_APIs/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/React_APIs/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/React_APIs/deployments", + "created_at": "2018-01-21T14:06:03Z", + "updated_at": "2018-07-28T10:18:28Z", + "pushed_at": "2018-07-28T10:18:26Z", + "git_url": "git://github.com/HackYourFuture/React_APIs.git", + "ssh_url": "git@github.com:HackYourFuture/React_APIs.git", + "clone_url": "https://github.com/HackYourFuture/React_APIs.git", + "svn_url": "https://github.com/HackYourFuture/React_APIs", + "homepage": null, + "size": 44, + "stargazers_count": 0, + "watchers_count": 0, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 120339892, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjAzMzk4OTI=", + "name": "hyfer", + "full_name": "HackYourFuture/hyfer", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/hyfer", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/hyfer", + "forks_url": "https://api.github.com/repos/HackYourFuture/hyfer/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/hyfer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/hyfer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/hyfer/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/hyfer/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/hyfer/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/hyfer/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/hyfer/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/hyfer/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/hyfer/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/hyfer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/hyfer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/hyfer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/hyfer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/hyfer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/hyfer/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/hyfer/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/hyfer/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/hyfer/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/hyfer/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/hyfer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/hyfer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/hyfer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/hyfer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/hyfer/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/hyfer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/hyfer/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/hyfer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/hyfer/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/hyfer/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/hyfer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/hyfer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/hyfer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/hyfer/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/hyfer/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/hyfer/deployments", + "created_at": "2018-02-05T17:46:55Z", + "updated_at": "2018-11-27T08:56:08Z", + "pushed_at": "2018-07-26T09:09:43Z", + "git_url": "git://github.com/HackYourFuture/hyfer.git", + "ssh_url": "git@github.com:HackYourFuture/hyfer.git", + "clone_url": "https://github.com/HackYourFuture/hyfer.git", + "svn_url": "https://github.com/HackYourFuture/hyfer", + "homepage": null, + "size": 2168, + "stargazers_count": 5, + "watchers_count": 5, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 29, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": null, + "forks": 29, + "open_issues": 6, + "watchers": 5, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 124885266, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ4ODUyNjY=", + "name": "JavaScript2", + "full_name": "HackYourFuture/JavaScript2", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/JavaScript2", + "description": "Course content for the JavaScript2 module", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/JavaScript2", + "forks_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/JavaScript2/deployments", + "created_at": "2018-03-12T12:24:28Z", + "updated_at": "2019-05-27T09:36:40Z", + "pushed_at": "2019-05-29T01:38:34Z", + "git_url": "git://github.com/HackYourFuture/JavaScript2.git", + "ssh_url": "git@github.com:HackYourFuture/JavaScript2.git", + "clone_url": "https://github.com/HackYourFuture/JavaScript2.git", + "svn_url": "https://github.com/HackYourFuture/JavaScript2", + "homepage": null, + "size": 11159, + "stargazers_count": 7, + "watchers_count": 7, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 166, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 30, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 166, + "open_issues": 30, + "watchers": 7, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 124885319, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ4ODUzMTk=", + "name": "JavaScript3", + "full_name": "HackYourFuture/JavaScript3", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/JavaScript3", + "description": "Course content for the JavaScript3 module", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/JavaScript3", + "forks_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/JavaScript3/deployments", + "created_at": "2018-03-12T12:24:51Z", + "updated_at": "2019-05-26T17:58:02Z", + "pushed_at": "2019-05-26T17:55:41Z", + "git_url": "git://github.com/HackYourFuture/JavaScript3.git", + "ssh_url": "git@github.com:HackYourFuture/JavaScript3.git", + "clone_url": "https://github.com/HackYourFuture/JavaScript3.git", + "svn_url": "https://github.com/HackYourFuture/JavaScript3", + "homepage": null, + "size": 11316, + "stargazers_count": 6, + "watchers_count": 6, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 144, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 34, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 144, + "open_issues": 34, + "watchers": 6, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 124885419, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ4ODU0MTk=", + "name": "fundamentals", + "full_name": "HackYourFuture/fundamentals", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/fundamentals", + "description": "JavaScript fundamentals and resources", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/fundamentals", + "forks_url": "https://api.github.com/repos/HackYourFuture/fundamentals/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/fundamentals/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/fundamentals/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/fundamentals/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/fundamentals/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/fundamentals/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/fundamentals/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/fundamentals/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/fundamentals/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/fundamentals/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/fundamentals/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/fundamentals/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/fundamentals/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/fundamentals/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/fundamentals/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/fundamentals/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/fundamentals/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/fundamentals/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/fundamentals/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/fundamentals/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/fundamentals/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/fundamentals/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/fundamentals/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/fundamentals/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/fundamentals/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/fundamentals/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/fundamentals/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/fundamentals/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/fundamentals/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/fundamentals/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/fundamentals/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/fundamentals/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/fundamentals/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/fundamentals/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/fundamentals/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/fundamentals/deployments", + "created_at": "2018-03-12T12:25:46Z", + "updated_at": "2019-05-27T09:47:24Z", + "pushed_at": "2019-05-27T09:47:22Z", + "git_url": "git://github.com/HackYourFuture/fundamentals.git", + "ssh_url": "git@github.com:HackYourFuture/fundamentals.git", + "clone_url": "https://github.com/HackYourFuture/fundamentals.git", + "svn_url": "https://github.com/HackYourFuture/fundamentals", + "homepage": null, + "size": 11911, + "stargazers_count": 14, + "watchers_count": 14, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 27, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 3, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "forks": 27, + "open_issues": 3, + "watchers": 14, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 126811012, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY4MTEwMTI=", + "name": "JavaScript3_examples", + "full_name": "HackYourFuture/JavaScript3_examples", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/JavaScript3_examples", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples", + "forks_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/JavaScript3_examples/deployments", + "created_at": "2018-03-26T10:15:35Z", + "updated_at": "2019-01-31T12:30:24Z", + "pushed_at": "2019-01-31T12:30:22Z", + "git_url": "git://github.com/HackYourFuture/JavaScript3_examples.git", + "ssh_url": "git@github.com:HackYourFuture/JavaScript3_examples.git", + "clone_url": "https://github.com/HackYourFuture/JavaScript3_examples.git", + "svn_url": "https://github.com/HackYourFuture/JavaScript3_examples", + "homepage": null, + "size": 130, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 3, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 127574848, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc1NzQ4NDg=", + "name": "infrastructure", + "full_name": "HackYourFuture/infrastructure", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/infrastructure", + "description": "HackYourFuture Infrastructure", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/infrastructure", + "forks_url": "https://api.github.com/repos/HackYourFuture/infrastructure/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/infrastructure/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/infrastructure/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/infrastructure/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/infrastructure/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/infrastructure/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/infrastructure/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/infrastructure/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/infrastructure/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/infrastructure/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/infrastructure/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/infrastructure/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/infrastructure/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/infrastructure/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/infrastructure/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/infrastructure/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/infrastructure/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/infrastructure/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/infrastructure/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/infrastructure/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/infrastructure/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/infrastructure/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/infrastructure/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/infrastructure/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/infrastructure/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/infrastructure/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/infrastructure/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/infrastructure/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/infrastructure/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/infrastructure/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/infrastructure/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/infrastructure/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/infrastructure/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/infrastructure/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/infrastructure/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/infrastructure/deployments", + "created_at": "2018-03-31T22:03:31Z", + "updated_at": "2019-01-25T15:51:29Z", + "pushed_at": "2018-12-01T14:15:29Z", + "git_url": "git://github.com/HackYourFuture/infrastructure.git", + "ssh_url": "git@github.com:HackYourFuture/infrastructure.git", + "clone_url": "https://github.com/HackYourFuture/infrastructure.git", + "svn_url": "https://github.com/HackYourFuture/infrastructure", + "homepage": null, + "size": 138, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HCL", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 130275432, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzAyNzU0MzI=", + "name": "hyfer-infra", + "full_name": "HackYourFuture/hyfer-infra", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/hyfer-infra", + "description": "Infrastructure for hyfer-deploy", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/hyfer-infra", + "forks_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/hyfer-infra/deployments", + "created_at": "2018-04-19T21:40:28Z", + "updated_at": "2018-04-19T21:40:28Z", + "pushed_at": "2018-04-19T21:40:28Z", + "git_url": "git://github.com/HackYourFuture/hyfer-infra.git", + "ssh_url": "git@github.com:HackYourFuture/hyfer-infra.git", + "clone_url": "https://github.com/HackYourFuture/hyfer-infra.git", + "svn_url": "https://github.com/HackYourFuture/hyfer-infra", + "homepage": null, + "size": 0, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 144702981, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDQ3MDI5ODE=", + "name": "hyfer-client", + "full_name": "HackYourFuture/hyfer-client", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/hyfer-client", + "description": "Hyfer SPA", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/hyfer-client", + "forks_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/hyfer-client/deployments", + "created_at": "2018-08-14T10:06:45Z", + "updated_at": "2018-10-18T12:17:39Z", + "pushed_at": "2018-10-18T12:17:38Z", + "git_url": "git://github.com/HackYourFuture/hyfer-client.git", + "ssh_url": "git@github.com:HackYourFuture/hyfer-client.git", + "clone_url": "https://github.com/HackYourFuture/hyfer-client.git", + "svn_url": "https://github.com/HackYourFuture/hyfer-client", + "homepage": "https://hyfer.herokuapp.com", + "size": 307, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + }, + { + "id": 144703057, + "node_id": "MDEwOlJlcG9zaXRvcnkxNDQ3MDMwNTc=", + "name": "hyfer-api", + "full_name": "HackYourFuture/hyfer-api", + "private": false, + "owner": { + "login": "HackYourFuture", + "id": 20858568, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwODU4NTY4", + "avatar_url": "https://avatars2.githubusercontent.com/u/20858568?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HackYourFuture", + "html_url": "https://github.com/HackYourFuture", + "followers_url": "https://api.github.com/users/HackYourFuture/followers", + "following_url": "https://api.github.com/users/HackYourFuture/following{/other_user}", + "gists_url": "https://api.github.com/users/HackYourFuture/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HackYourFuture/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HackYourFuture/subscriptions", + "organizations_url": "https://api.github.com/users/HackYourFuture/orgs", + "repos_url": "https://api.github.com/users/HackYourFuture/repos", + "events_url": "https://api.github.com/users/HackYourFuture/events{/privacy}", + "received_events_url": "https://api.github.com/users/HackYourFuture/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HackYourFuture/hyfer-api", + "description": "Hyfer API", + "fork": false, + "url": "https://api.github.com/repos/HackYourFuture/hyfer-api", + "forks_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/forks", + "keys_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/teams", + "hooks_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/hooks", + "issue_events_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/events", + "assignees_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/tags", + "blobs_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/languages", + "stargazers_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/stargazers", + "contributors_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/contributors", + "subscribers_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/subscribers", + "subscription_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/subscription", + "commits_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/merges", + "archive_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/downloads", + "issues_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/labels{/name}", + "releases_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/HackYourFuture/hyfer-api/deployments", + "created_at": "2018-08-14T10:07:19Z", + "updated_at": "2018-10-18T12:16:59Z", + "pushed_at": "2018-10-18T12:16:58Z", + "git_url": "git://github.com/HackYourFuture/hyfer-api.git", + "ssh_url": "git@github.com:HackYourFuture/hyfer-api.git", + "clone_url": "https://github.com/HackYourFuture/hyfer-api.git", + "svn_url": "https://github.com/HackYourFuture/hyfer-api", + "homepage": "https://hyfer.herokuapp.com", + "size": 5187, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": false, + "push": false, + "pull": true + } + } +] \ No newline at end of file diff --git a/homework/style.css b/homework/style.css index a8985a8a5..720eca286 100644 --- a/homework/style.css +++ b/homework/style.css @@ -1,3 +1,72 @@ + + .alert-error { color: red; -} \ No newline at end of file +} + +body{ + height: 1000px; + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; + +} + +#root{ + background: blue; + position: relative; + width: 99%; + height: 10%; + display: flex; + flex-direction: row; + justify-self: flex-start; + position: absolute; + justify-content: flex-start; + +} + +h2{ + font-size: 1rem; + position: absolute; + +} + +select { + height: 5%; + margin-top: 1%; + width: 20%; + position: absolute; + + margin-left: 20%; + height: 50%; +} + #roota{ +margin-top: 10%; +height: 50%; +width: 100%; +justify-self: flex-end; +display: flex; +justify-content: space-around; +} + +#repoInfo { + border: 0.1rem solid black; + padding: 0.5rem; + width: 45%; + height: 40%; + line-height: 200%; + order: 2; +} +#repoContributers{ + + padding: 0.1rem; + padding-left: 0.3rem; + border: 0.1rem solid black; + width: 45%; + height: 40%; + order: 2; + +} + + diff --git a/homework/try.js b/homework/try.js new file mode 100644 index 000000000..aedb10d79 --- /dev/null +++ b/homework/try.js @@ -0,0 +1,51 @@ +'use strict'; + +class View { + constructor(e) { + this.initialize(e); + } + + async initialize(e) { + const t = document.getElementById('root'); + const r = Util.createAndAppend('header', t, { class: 'header' }); + Util.createAndAppend('p', r, { html: 'HYF Repositories' }); + const n = Util.createAndAppend('select', r, { + class: 'repo-selector', + 'aria-label': 'HYF Repositories', + }); + n.addEventListener('change', () => this.fetchAndRender(n.value)), + Util.createAndAppend('div', t, { id: 'container' }); + try { + const t = await Util.fetchJSON(e); + (this.repos = t.sort((e, t) => e.name.localeCompare(t.name)).map(e => new Repository(e))), + this.repos.forEach((e, t) => { + Util.createAndAppend('option', n, { html: e.name(), value: t }); + }), + this.fetchAndRender(n.value); + } catch (e) { + this.renderError(e); + } + } + async fetchAndRender(e) { + const t = this.repos[e], + r = document.getElementById('container'); + try { + const e = await t.fetchContributors(); + r.innerHTML = ''; + const n = Util.createAndAppend('div', r, { class: 'left-div whiteframe' }), + i = Util.createAndAppend('div', r, { class: 'right-div whiteframe' }); + Util.createAndAppend('p', i, { html: 'Contributions', class: 'contributor-header' }); + const a = Util.createAndAppend('ul', i, { class: 'contributor-list' }); + t.render(n), e.map(e => new Contributor(e)).forEach(e => e.render(a)); + } catch (e) { + this.renderError(e); + } + } + renderError(e) { + const t = document.getElementById('container'); + (t.innerHTML = ''), + Util.createAndAppend('div', t, { html: e.message, class: 'alert alert-error' }); + } +} +const HYF_REPOS_URL = 'https://api.github.com/orgs/HackYourFuture/repos?per_page=100'; +window.onload = () => new View(HYF_REPOS_URL);